library(RcppSimdJson)
library(data.table)
Registered S3 method overwritten by 'data.table':
method from
print.data.table
data.table 1.14.0 using 4 threads (see ?getDTthreads). Latest news: r-datatable.com
library("lubridate")
Dołączanie pakietu: ‘lubridate’
Następujące obiekty zostały zakryte z ‘package:data.table’:
hour, isoweek, mday, minute, month, quarter, second, wday, week, yday, year
Następujące obiekty zostały zakryte z ‘package:base’:
date, intersect, setdiff, union
library(tidyverse)
Registered S3 methods overwritten by 'dbplyr':
method from
print.tbl_lazy
print.tbl_sql
-- Attaching packages ------------------------------------------------ tidyverse 1.3.1 --
<U+221A> ggplot2 3.3.5 <U+221A> purrr 0.3.4
<U+221A> tibble 3.1.2 <U+221A> dplyr 1.0.7
<U+221A> tidyr 1.1.3 <U+221A> stringr 1.4.0
<U+221A> readr 1.4.0 <U+221A> forcats 0.5.1
-- Conflicts --------------------------------------------------- tidyverse_conflicts() --
x lubridate::as.difftime() masks base::as.difftime()
x dplyr::between() masks data.table::between()
x lubridate::date() masks base::date()
x dplyr::filter() masks stats::filter()
x dplyr::first() masks data.table::first()
x lubridate::hour() masks data.table::hour()
x lubridate::intersect() masks base::intersect()
x lubridate::isoweek() masks data.table::isoweek()
x dplyr::lag() masks stats::lag()
x dplyr::last() masks data.table::last()
x lubridate::mday() masks data.table::mday()
x lubridate::minute() masks data.table::minute()
x lubridate::month() masks data.table::month()
x lubridate::quarter() masks data.table::quarter()
x lubridate::second() masks data.table::second()
x lubridate::setdiff() masks base::setdiff()
x purrr::transpose() masks data.table::transpose()
x lubridate::union() masks base::union()
x lubridate::wday() masks data.table::wday()
x lubridate::week() masks data.table::week()
x lubridate::yday() masks data.table::yday()
x lubridate::year() masks data.table::year()
library(janitor)
Warning: pakiet ‘janitor’ został zbudowany w wersji R 4.1.3
Dołączanie pakietu: ‘janitor’
Następujące obiekty zostały zakryte z ‘package:stats’:
chisq.test, fisher.test
library(stringi)
read_cbop <- function(file) {
cbop_file <- readLines(file)
cbop <- fparse(json = cbop_file[1])
cbop_list <- list()
for (i in 1:length(cbop)) {
prac <- cbop[[i]]$danePracodawcy
names(prac) <- cbop[[i]]$hash
prac_df <- rbindlist(prac, idcol = "hash")
setnames(prac_df, names(prac_df)[-1], paste0("prac_", names(prac_df)[-1]))
pozostaleDane <- rbindlist(cbop[[i]]$pozostaleDane)
setnames(pozostaleDane, names(pozostaleDane), paste0("poz_", names(pozostaleDane)))
warunkiPracyIPlacy <- rbindlist(cbop[[i]]$warunkiPracyIPlacy)
setnames(warunkiPracyIPlacy, names(warunkiPracyIPlacy),
paste0("war_", names(warunkiPracyIPlacy)))
prac_df <- cbind(prac_df, pozostaleDane, warunkiPracyIPlacy)
prac_df[, ":="(typOferty = cbop[[i]]$typOferty,
czyWazna = cbop[[i]]$czyWazna,
statusOferty = cbop[[i]]$statusOferty)]
cbop_list[[i]] <- prac_df
}
cbop_list_df <- rbindlist(cbop_list)
cbop_list_df[, .SD, .SDcols = names(cbop_list_df) %like% "data|oferta"]
cbop_list_df[, ":="(poz_dataPrzyjZglosz=dmy(poz_dataPrzyjZglosz),
poz_ofertaWaznaDo=dmy(poz_ofertaWaznaDo))]
final_df <- cbop_list_df[ typOferty == "OFERTA_PRACY" &
czyWazna == TRUE &
war_kraj == "Polska" &
(!is.na(prac_regon) | !is.na(prac_nip)) &
war_rodzajZatrudnienia %in%
c("Umowa o pracę na czas określony", "Umowa o pracę na czas nieokreślony",
"Umowa o pracę w zastępstwie",
"Umowa o pracę na okres próbny",
"Umowa na czas wyk. określonej pracy")][
, ":="(prac_nip = str_remove_all(prac_nip, "-"),
kod_pocztowy = str_extract(war_miejscePracy,
"\\d{2}\\-\\d{3}"))][
!prac_nip %in% c("0000000000", "1111111111")]
final_df[, ":="(war_gmina = tolower(war_gmina),
war_ulica=tolower(war_ulica),
war_miejscowosc=tolower(war_miejscowosc),
war_stanowisko=tolower(war_stanowisko))]
final_df[, war_ulica:=str_replace(war_ulica, "pl\\.", "plac ")]
final_df[, war_ulica:=str_replace(war_ulica, "al\\.", "aleja ")]
final_df[, war_ulica:=str_replace(war_ulica, " ", " ")]
final_df[, war_ulica:=str_remove(war_ulica, "^\\.|-$")]
final_df[, ":="(war_gmina = str_remove(war_gmina, "m.st. "))]
final_df[, kod_pocztowy:=str_remove(kod_pocztowy, "00-000")]
final_df[kod_pocztowy == "", kod_pocztowy := NA]
final_df[, poz_kodZawodu := str_remove(poz_kodZawodu, "RPd057\\|")]
final_df[, poz_grupaZawodu := substr(poz_kodZawodu, 1, 1)]
final_df[, prac_regon := substr(prac_regon, 1, 9)]
final_df[, poz_dataUdostepnieniaOferty := ymd(poz_dataUdostepnieniaOferty)]
return(final_df)
}
#Chosen columns to keep
columns_to_keep <- c('file', 'hash', 'prac_osobaDoKontaktu', 'prac_nrTelefonu', 'prac_nip', 'prac_nazwaUrzeduPracy', 'prac_regon', 'poz_kodZawodu', 'poz_zawod', 'poz_grupaZawodu', 'poz_lWolnychMiejsc', 'poz_kodKategoriiOferty', 'poz_udostepnionoDoEURES', 'poz_dlaPoborowych', 'poz_ofertaDlaOsobZarej', 'poz_identyfikatorOferty', 'poz_lWolnychMiejscDlaNiepeln', 'poz_finansZPfron', 'poz_ofertaWaznaDo', 'poz_ofertaZgloszonaPrzez', 'poz_ofertaZgloszonaPrzezKodJednostki', 'poz_dataPrzyjZglosz', 'war_dataZakonczeniaPracy', 'war_miejscePracyCzlonDrugi', 'war_zakresObowiazkow', 'war_opisOferty', 'war_rodzajZatrudnienia', 'war_miejscePracyCzlonPierwszy', 'war_lGodzinWMiesiacu', 'war_kodZmianowosci', 'war_wojewodztwo', 'war_kodWojewodztwa', 'war_ulica', 'war_powiat', 'war_kodPowiatu', 'war_zawod', 'war_gmina', 'war_opisWynagrodzenia', 'war_pracaWWolneDni', 'war_wynagrodzenieBrutto', 'war_nrBudynku', 'war_kodSystemuWynagradzania', 'war_nrLokalu', 'war_miejscePracy', 'war_lGodzinWTygodniu', 'war_stanowisko', 'war_dataRozpoczeciaPracy', 'war_wymiarEtatu', 'war_miejscowosc', 'war_zatrOdZaraz', 'war_kodMiejscowosci', 'war_pracaStala', 'war_wynagrodzenieBruttoZTypemStawki', 'war_zmianowosc', 'war_pracaTymczasowa', 'war_kodRodzajuZatrudnienia', 'kod_pocztowy')
create_table <- function(cbop_year, files) {
for (file in files) {
cbop_year[[length(cbop_year)+1]] <- read_cbop(file)
}
files <- str_remove_all(files, '(data\\\\\\d+\\\\|_full.json)')
names(cbop_year) <- basename(files)
cbop_year <- rbindlist(cbop_year, idcol = "file")
cbop_year$file <- ymd(cbop_year$file)
cbop_year <- cbop_year[, ..columns_to_keep]
for (i in columns_to_keep) {
if (is.character(cbop_year[[i]]) == TRUE) cbop_year[[i]] <-
stri_trans_general(cbop_year[[i]], 'pl-ascii')
}
return(cbop_year)
}
remove_duplicates <- function(cbop_year) {
#Identical job offers
cbop_year <- cbop_year %>% filter(duplicated(cbop_year,
by=names(cbop_year)[names(cbop_year)
!='file'],
fromLast = TRUE) == FALSE)
#Prolonged job offers
cbop_year <- cbop_year %>% filter(duplicated(cbop_year,
by=names(cbop_year)[!names(cbop_year) %in%
c('file','poz_ofertaWaznaDo')],
fromLast = TRUE) == FALSE)
return(cbop_year)
}
cbop_duplicate <- cbop_duplicate %>% filter(duplicated(cbop_year,
by=names(cbop_year)[!names(cbop_year) %in%
c('file','poz_udostepnionoDoEURES',
'war_opisOferty')],
fromLast = TRUE) == FALSE |
duplicated(cbop_year,
by=names(cbop_year)[!names(cbop_year) %in%
c('file','poz_udostepnionoDoEURES',
'war_opisOferty')],
fromLast = FALSE) == FALSE)
Error: Problem with `filter()` input `..1`.
i Input `..1` is `|...`.
x object 'cbop_year' not found
Run `rlang::last_error()` to see where the error occurred.
#Notatki
#Różnice w war_wynagrodzenieBrutto!!!
#war_stanowisko: "specjalista ds. handlowych-133" i "133-specjalista ds. handlowych"
#Chełm w różnych woj, powiatach, gminach '6009fe476b0739ef6d3f8d9cb73e784d3'
#ulica i brak ulicy....
#war_opisWynagrodzenia '+ staz pracy + 100% premii regulaminowej' lub '+ staz pracy + 10% premii regulaminowej'
#'01c212874d7c2ec958210941dea962a5' - zupełnie inny kod zawodu
#'05f6c30a31aa7dfb3d778c882d366946' - kilka zawodów
#EURES TRUE
#poz_kodKategoriiOferty
#2020
cbop_2020 <- list()
files <- Sys.glob('data\\2020\\*.json')
cbop_2020<- create_table(cbop_2020, files, columns_to_keep)
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_09_28_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7943 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1446 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5016 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22944 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4083 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14296 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22815 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4124 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13857 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23117 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4066 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13989 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11340 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2012 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6832 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22679 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4094 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14209 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1060 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 185 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 704 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20142 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3740 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12455 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22793 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4064 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14393 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10469 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1885 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6462 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22242 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13852 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22786 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4072 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14428 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3461 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 627 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2234 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22959 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4080 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14499 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22826 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4100 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14134 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1036 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 191 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 732 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22386 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4125 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14275 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7759 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1411 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4785 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22687 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4085 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12605 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2290 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7794 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21074 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3790 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22594 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4091 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14142 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9420 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1691 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22409 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14014 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22591 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4081 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14526 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22616 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4053 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14278 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 500 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 83 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 325 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22802 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4090 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13808 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12328 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2170 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7380 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22820 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4081 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4492 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 807 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2859 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22885 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4039 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13950 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22877 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4076 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14095 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22737 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4039 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14303 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7978 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1435 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5204 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5516 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 6 ['dataAktualizacji'] of item 1 is length 0. This (and 1429 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3696 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_09_29_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8172 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1491 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5167 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22972 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4080 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14288 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22782 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4114 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13821 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23094 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13901 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11529 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6982 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22695 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4090 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14168 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1531 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 272 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1013 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20092 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3726 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12424 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22767 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14306 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10172 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1817 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6232 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 341 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 59 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 231 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22401 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4099 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13946 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22767 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14460 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3263 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 590 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2111 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22951 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14512 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22840 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4100 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14146 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1548 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 286 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22372 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4118 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14263 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8065 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1461 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4949 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22680 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4087 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14024 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12777 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2318 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7888 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21884 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3936 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13523 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22608 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4104 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14231 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9575 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1722 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6165 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22418 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14037 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22566 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4074 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14525 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22599 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14246 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 216 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 35 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 140 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22825 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4091 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13849 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12994 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2285 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 7769 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22818 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4079 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14092 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4011 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 718 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2545 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22869 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13978 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22868 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4069 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14009 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22730 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14283 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7958 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1431 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5187 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5516 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 6 ['dataAktualizacji'] of item 1 is length 0. This (and 1429 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3696 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_09_30_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6978 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1270 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 4418 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22961 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14260 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22789 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4123 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13870 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23096 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4062 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13887 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10699 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1895 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6467 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22695 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4082 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14120 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1916 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 343 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1263 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20529 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3800 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12731 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22771 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4060 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14351 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10196 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1812 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6241 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 15 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22423 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4104 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14003 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22740 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14405 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3440 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 621 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2222 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22978 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4060 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14432 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22865 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4105 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14174 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1709 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 315 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1147 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22354 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4114 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14279 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7097 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1292 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4359 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22691 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4083 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14019 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12686 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2301 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 7850 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22449 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13869 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22661 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4105 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14230 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8841 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1590 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5701 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22436 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14101 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22536 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4066 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14481 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22542 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14173 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22335 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4008 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13575 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12021 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2116 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7176 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22787 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4069 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14068 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5003 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 897 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3179 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22888 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13922 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22855 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4062 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22737 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4036 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14284 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7569 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1364 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4942 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5466 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 6 ['dataAktualizacji'] of item 1 is length 0. This (and 1418 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3663 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_01_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2710 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 501 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1750 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22949 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4068 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14231 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22760 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4130 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13899 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4066 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13837 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5612 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 998 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3417 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20871 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3765 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13075 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17126 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3162 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10628 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22762 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14276 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7799 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1385 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4807 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3464 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11781 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22751 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14383 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22951 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14475 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20416 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3664 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12750 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20468 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3746 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13112 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3192 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 577 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1952 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22676 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4078 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13999 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10673 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1923 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 6563 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18169 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3256 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11228 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22680 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4109 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14273 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1269 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 223 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 872 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22471 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4028 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14107 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22515 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14361 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22560 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14247 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20745 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3704 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12572 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9500 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1648 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5645 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22853 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4072 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1336 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 237 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 880 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22879 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13933 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22864 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14051 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22758 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14333 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4465 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 796 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2769 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3160 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 812 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2116 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_02_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2800 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 518 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1811 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22912 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14132 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22784 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4136 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13940 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13821 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5770 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1026 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3509 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21597 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3908 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13545 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17322 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3195 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10732 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22746 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14232 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7419 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1321 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4575 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19267 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3500 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11934 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22732 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14356 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22971 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4062 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14483 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21446 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3856 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13407 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20890 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3823 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13416 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3594 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 649 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2199 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22673 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4081 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14019 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10394 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1870 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6386 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17936 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3217 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11084 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22707 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4106 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14312 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2648 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 472 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1761 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22480 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14113 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22506 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14320 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22581 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14272 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20517 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3661 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12409 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10082 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1750 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5987 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22835 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4063 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14026 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1518 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 268 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 992 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22858 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13934 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22844 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22770 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14348 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4420 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 786 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2750 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3082 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 6 ['dataAktualizacji'] of item 1 is length 0. This (and 789 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_03_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2372 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 441 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1537 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22897 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14143 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22779 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4135 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13958 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23024 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4063 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13807 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4998 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 882 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21393 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3869 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13407 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17107 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3159 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10613 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22752 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14221 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6740 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1201 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 4155 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18060 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3284 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11209 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22726 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14335 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22971 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14495 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20554 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3695 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12841 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20545 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3758 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13191 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2711 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 491 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1669 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22662 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4082 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14010 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10076 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1814 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6182 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16974 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10491 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22711 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4103 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14309 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1224 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 215 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 845 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22496 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14155 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22511 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14329 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22567 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14291 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20401 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3640 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12331 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9659 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1677 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5733 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22841 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 905 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 156 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 597 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22831 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13974 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22846 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4074 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14085 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22776 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4029 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14375 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3788 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 675 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2353 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3082 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 6 ['dataAktualizacji'] of item 1 is length 0. This (and 789 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_04_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1822 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 337 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1184 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22898 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14145 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22749 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4137 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13976 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23014 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4065 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13801 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4562 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 804 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2769 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21094 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3816 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13238 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16924 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3126 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10500 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22750 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14216 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5866 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3638 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17552 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3192 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10899 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22726 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14335 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22971 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14495 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19822 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3566 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12392 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20379 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3726 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13078 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2462 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 442 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1512 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22668 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4087 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14020 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9984 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1798 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6125 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16371 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2936 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10131 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22718 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4104 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14309 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 814 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 143 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 571 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22519 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14170 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22511 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14329 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22547 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14297 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20426 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3644 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12343 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9291 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1612 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5510 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22843 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14037 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 507 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 87 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 340 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22828 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13983 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22846 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4074 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14085 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22774 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4029 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14371 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3700 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 659 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2297 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3082 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 6 ['dataAktualizacji'] of item 1 is length 0. This (and 789 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_05_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3329 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 615 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2156 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22886 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14154 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22789 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4134 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13925 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23079 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13914 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6576 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1165 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3938 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21472 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3881 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13460 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16969 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3132 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10530 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22741 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4053 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14180 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5810 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1037 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3587 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18690 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3389 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11649 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22689 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14328 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22967 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14465 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19906 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3585 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12500 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20739 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3790 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13346 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3519 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 637 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2158 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22675 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4088 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10851 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1964 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 6681 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17212 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3092 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10649 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22730 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4099 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14308 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1854 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 327 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1242 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22482 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14141 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22516 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14293 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22573 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14287 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20168 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3603 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12213 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9219 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1602 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5457 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22847 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1153 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 203 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 763 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22792 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13915 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22874 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4077 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14137 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22772 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4027 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14366 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4241 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 755 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2643 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3082 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 6 ['dataAktualizacji'] of item 1 is length 0. This (and 789 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_06_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4190 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 769 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2708 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22851 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14125 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22788 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4130 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13904 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23097 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13908 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7419 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1312 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4449 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22205 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4007 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13918 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16894 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3115 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10467 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22736 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4051 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14202 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1068 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3685 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19735 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3577 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12275 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22689 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14360 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22945 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14469 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20489 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3682 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12847 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21356 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3909 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13772 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3951 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 714 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2418 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22669 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4078 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14007 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11418 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7020 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3241 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11190 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22713 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4089 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14209 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3142 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 560 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2064 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22497 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4029 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14134 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22510 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4044 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14336 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22576 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14259 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20509 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3661 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12432 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8801 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1534 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5234 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22819 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13946 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1220 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 215 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 804 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22806 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13873 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22846 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4071 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14123 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22777 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4027 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14355 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4173 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 743 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2601 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3151 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 804 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2105 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_07_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4348 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 805 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2808 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22826 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4039 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14099 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22813 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4143 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13960 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23089 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4100 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14009 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8386 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1481 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21817 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3938 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13673 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16962 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3131 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10512 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22765 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14285 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6695 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1188 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4103 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20917 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3786 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12996 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22691 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4062 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14426 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22969 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14455 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20683 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3719 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12914 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21936 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4024 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14119 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4575 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 833 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2809 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22663 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4085 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14010 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11674 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2111 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7160 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18937 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3395 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11729 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22712 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4097 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14240 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3893 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 699 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2537 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22453 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4027 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14088 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22533 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14308 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22607 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14272 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21226 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3792 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12852 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8161 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1422 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4848 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22794 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13973 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1927 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 344 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1252 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22811 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4039 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13852 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22816 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4068 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14137 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22741 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4027 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14325 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4217 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 749 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2618 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4768 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1234 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3190 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_08_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4406 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 817 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2849 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22760 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14060 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22850 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4148 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13951 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23118 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4093 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9190 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1619 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5478 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21687 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3917 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13606 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17081 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3152 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10583 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22752 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4060 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14282 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6373 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1132 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3904 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20959 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3791 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13023 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22657 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4062 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14328 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22960 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14391 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20538 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3691 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12815 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22080 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4051 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14170 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4725 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 861 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2899 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22682 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4089 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2187 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7403 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18974 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3397 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11712 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22720 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4094 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14220 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 915 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3295 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22451 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14075 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22508 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14307 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22610 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4024 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14252 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21833 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3897 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13217 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8210 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1431 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4889 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22775 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13899 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2319 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 413 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1492 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22805 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13819 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22806 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4068 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14174 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22760 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4029 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14317 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4308 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 763 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2673 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4789 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1237 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3200 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_09_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5129 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 948 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3300 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22780 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22880 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4143 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13966 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23127 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4083 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13995 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8391 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1483 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5014 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21580 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3896 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13516 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16813 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3104 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10440 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22750 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4060 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14204 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5808 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1029 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3563 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21565 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3892 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13391 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22648 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4068 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14388 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22977 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14440 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21429 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3847 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13345 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22302 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4093 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14285 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4760 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 868 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2931 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22666 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4094 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14062 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12403 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2245 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7609 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18612 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3333 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11484 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22677 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4087 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14143 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5501 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 991 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3566 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22502 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14089 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22480 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14340 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22592 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4022 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14243 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21561 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3847 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8139 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1419 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4847 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22769 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13889 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1244 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 219 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 817 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22779 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13863 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22843 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14146 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22727 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14287 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4426 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 783 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2748 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5170 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1342 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3457 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_10_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3859 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 714 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2486 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22766 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22863 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4149 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14011 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23133 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4081 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13966 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7623 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1347 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 4567 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21097 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3811 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13217 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16656 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3075 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10346 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22739 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14210 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5576 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 989 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3413 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20141 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3636 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12511 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22626 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14368 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22969 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14463 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20425 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3669 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12729 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22078 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14145 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3906 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 716 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2407 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22660 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4095 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12314 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 2231 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7566 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17831 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3194 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11017 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22679 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4085 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14134 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4072 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 731 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2652 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22490 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14104 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22489 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14347 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22606 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14246 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21351 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 3808 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12908 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7616 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1327 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 4523 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22769 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13904 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 460 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 79 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 310 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22785 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13910 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22851 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4069 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14173 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22735 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14250 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3380 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 599 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2088 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5168 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1342 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3453 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_11_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3188 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 593 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2060 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22765 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14053 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22859 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4150 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23122 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4081 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13967 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6854 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1210 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4110 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20658 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3735 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12955 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16430 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10210 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22737 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14212 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4845 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 861 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2969 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19800 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3575 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12297 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22627 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4065 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14369 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22969 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14465 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19392 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3478 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12096 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21834 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4008 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13985 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3447 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 636 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2126 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22653 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4095 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12173 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 2207 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7480 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16996 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3045 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10523 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22675 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4085 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14139 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3511 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 628 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2306 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22500 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14101 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22489 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14347 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22600 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14242 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21351 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 3808 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12908 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1227 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4175 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22776 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13898 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22475 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3990 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13749 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22851 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4069 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14173 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22736 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4036 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14256 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3063 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 541 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1884 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5168 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1342 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3453 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_12_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4653 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 861 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2995 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22747 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14108 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22896 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 4149 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13970 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23140 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4076 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13970 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7528 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1330 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4511 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20866 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3768 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13063 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3148 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10595 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22734 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14172 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5094 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 905 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3122 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21629 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3905 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13414 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22662 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4071 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14500 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22947 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14498 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19604 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3510 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12225 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 133 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 23 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 98 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22349 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4106 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14305 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4021 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 735 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2469 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22650 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4094 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12291 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2228 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7555 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17486 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3132 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10832 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22672 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4083 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14106 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4283 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 771 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2785 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22500 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14097 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22503 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14334 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22588 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4024 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14242 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21719 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3879 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13148 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7342 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1279 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4355 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22761 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4045 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13868 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 298 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 51 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 198 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22800 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13951 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22835 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14089 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22750 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14260 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3183 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 563 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1958 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5192 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1346 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3465 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_13_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6186 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1144 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3961 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22742 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4062 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14175 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22906 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4136 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13925 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23132 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13948 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8227 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1452 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4932 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21457 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3871 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13396 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17716 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3266 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10994 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22719 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14192 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5254 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 933 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3215 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21722 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3926 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13477 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22782 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4068 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14527 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22948 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14447 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20210 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3622 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12602 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 317 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 55 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 221 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22326 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4096 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14247 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4317 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 787 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2640 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22641 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4089 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12720 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2307 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7824 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17262 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3098 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10717 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22655 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14111 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5320 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 959 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3448 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22482 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14102 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22516 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4065 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14335 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22593 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4019 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14213 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21345 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3813 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12902 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7531 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1312 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4457 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22785 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13864 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 531 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 91 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 355 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22801 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13901 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22798 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22764 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14266 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3220 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 571 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1999 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5244 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1360 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3499 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_14_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6614 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1219 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 4191 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22708 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14194 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22947 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4133 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13977 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23128 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13967 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8812 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1550 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5263 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21397 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3859 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13325 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17861 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3290 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11096 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22701 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14189 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4957 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 881 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21498 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3876 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13296 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22762 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4072 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14557 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22959 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14434 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20557 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3686 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12828 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 500 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 87 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 349 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22312 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4097 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14203 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3932 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 719 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2415 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22655 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4089 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14062 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12468 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2268 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 7678 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17502 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3162 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10867 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22644 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14112 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5822 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3777 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22451 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4036 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14095 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22539 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4069 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14341 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22582 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4016 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14201 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21499 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3841 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13001 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8199 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1428 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4854 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22797 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4045 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13908 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1565 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 276 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1017 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22794 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13843 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22807 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14095 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22755 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4036 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14266 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3649 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 647 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2272 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5268 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1367 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3519 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_15_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 6 ['emailOsobyZglPracodawca'] of item 1 is length 0. This (and 5475 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1009 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3503 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22724 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4062 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14190 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22947 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4138 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13951 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23138 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13905 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8175 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1442 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 4876 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21271 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3832 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13235 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17999 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3314 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11171 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22712 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14171 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4681 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 835 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2879 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21538 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3882 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13310 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22774 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4075 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14579 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22966 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4053 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14433 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20748 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3723 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12954 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 800 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 142 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 558 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22305 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4095 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14156 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3792 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 694 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2328 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22656 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4084 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12433 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2260 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7642 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16815 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10441 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22677 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4060 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14125 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5299 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 956 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3447 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22467 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4037 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14078 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22514 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4084 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14388 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22600 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4015 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14207 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21440 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3836 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12979 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1575 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5358 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22773 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13915 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1313 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 231 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 859 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22803 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13890 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22801 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4039 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22769 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14270 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4077 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 725 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2541 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5393 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1400 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3606 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_16_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5083 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 938 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3251 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22688 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4062 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14181 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22913 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4135 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13932 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23182 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13922 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8003 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1415 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4784 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 6 ['emailOsobyZglPracodawca'] of item 1 is length 0. This (and 20851 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3752 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12970 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17931 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3301 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11110 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22722 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14158 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3923 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 703 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2411 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20667 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3722 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12750 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22773 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14584 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22964 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4060 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14443 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20491 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3670 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12804 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 615 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 107 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 429 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22321 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4103 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14166 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3248 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 597 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2000 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22673 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4081 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13986 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12313 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2242 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7602 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15899 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2865 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9882 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22697 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14124 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4376 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 788 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2849 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22465 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22567 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14390 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22585 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4014 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14238 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21150 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3783 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12792 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9317 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1624 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5520 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22804 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4060 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13962 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1083 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 190 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 709 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22795 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13893 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22830 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14098 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22737 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4045 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14291 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3763 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 666 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2337 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5393 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1400 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3611 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_17_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3674 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 682 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2369 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22680 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4062 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14160 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22902 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4137 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13957 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23136 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4081 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13930 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6702 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1182 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 4000 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20281 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3652 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12627 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17822 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3281 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11060 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22732 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14157 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3324 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 599 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2045 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18870 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3399 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11640 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22765 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14542 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22957 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14460 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20156 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3608 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12582 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 200 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 35 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 147 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22327 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4101 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14212 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1827 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 327 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1113 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22652 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 4086 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13976 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12216 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2225 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 7549 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14884 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2684 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9246 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22687 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14123 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2713 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 484 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1795 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22464 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14064 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22558 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4074 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14383 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22584 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4020 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14239 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3763 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12724 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8955 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1559 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5297 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22823 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4072 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13973 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22327 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3964 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13647 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22833 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14090 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22737 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14299 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3173 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 562 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1966 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5580 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1451 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3730 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_18_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3247 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 605 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2092 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22682 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4062 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14158 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22889 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4135 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13963 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23126 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4081 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13930 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6256 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1102 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3736 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19763 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3554 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12292 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17551 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3233 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10895 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22731 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14159 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3257 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 587 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2001 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18295 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3296 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11308 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22765 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14542 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22957 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14460 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19706 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3528 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12297 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 66 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 11 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 49 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22328 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4101 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14220 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1404 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 255 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 869 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22659 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 4082 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13964 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12131 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2209 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 7491 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14356 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2592 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8924 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22687 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14123 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1850 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 327 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1234 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22458 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14053 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22558 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4074 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14383 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22577 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4021 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14241 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20947 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3747 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12675 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8605 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1499 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5080 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22823 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13979 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21664 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3848 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13254 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22831 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14092 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22732 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14305 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2996 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 529 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1845 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5580 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1451 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3730 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_19_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5121 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 954 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3287 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22654 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4066 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14280 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22874 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4126 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13852 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23131 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4080 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13901 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6602 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1166 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3940 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19816 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3563 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12329 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18020 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3318 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11191 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22724 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4051 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14164 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3900 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 699 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2396 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18577 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3350 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11484 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22769 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4075 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14572 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22955 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4064 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14388 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20008 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3577 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12468 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 44 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 7 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 33 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22321 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4098 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14214 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2165 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 392 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1324 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22628 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4079 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13950 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12205 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2219 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7531 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15435 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2779 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9568 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22654 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14102 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2578 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 460 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1707 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22490 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22550 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4071 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14371 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22596 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4020 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14252 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21025 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3761 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12733 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9108 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1588 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5397 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22810 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4069 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13985 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21655 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3844 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13257 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22846 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4036 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14086 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22729 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14282 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3330 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 588 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5439 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1415 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3632 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_20_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5224 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 974 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3353 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22665 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4064 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14289 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22874 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4127 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13868 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23119 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4082 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13902 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7045 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1243 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 4196 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20593 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3703 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12816 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3325 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11180 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22725 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14132 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3781 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 679 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2329 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19249 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3472 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11882 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22769 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4077 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14589 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22980 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4066 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14400 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20656 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3692 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12847 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 247 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 43 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 174 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22337 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4102 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14202 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1918 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 344 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1170 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22645 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4081 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13953 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12180 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2215 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7513 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15663 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2821 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9714 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22660 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14117 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4352 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 784 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2835 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22487 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14060 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22548 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4071 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14460 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22594 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4012 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14225 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21000 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3757 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12707 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9362 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1632 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5553 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22813 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4069 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13937 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21999 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3902 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13452 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22848 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14013 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22748 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14310 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3764 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 663 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2332 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5619 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1464 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3753 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_21_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5290 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 986 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3395 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22695 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4069 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14255 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22873 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4128 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13882 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23106 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4082 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13905 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7307 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1292 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4357 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19963 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3587 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12416 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17973 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3318 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11145 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22757 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4044 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14118 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4264 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 763 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2628 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18562 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3354 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11453 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22726 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4084 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14510 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22974 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4071 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14374 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20571 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3682 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12781 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 200 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 35 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 147 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22343 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4104 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14147 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1523 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 275 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 932 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22649 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4078 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13954 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 11 ['dodInfoAplikowanie'] of item 1 is length 0. This (and 12106 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2203 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 7460 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16240 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2924 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10079 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22666 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4064 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14094 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5729 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1029 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3719 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22467 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14016 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22591 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14600 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22592 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4011 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14230 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3766 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12740 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9499 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1656 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5638 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22793 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4074 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13955 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21756 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3861 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13299 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22865 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22736 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4044 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14361 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3972 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 700 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2463 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5764 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1500 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3839 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_22_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5175 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 966 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3328 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22752 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4069 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14263 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22865 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4127 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13875 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23091 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4077 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13893 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7638 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1349 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4571 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19742 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3546 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12281 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18369 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3396 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11413 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22770 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14122 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3784 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 679 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2331 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18964 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3426 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11715 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22741 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4094 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14526 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22965 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4074 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14417 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20335 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3636 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12628 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22304 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4097 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14135 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 944 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 169 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 578 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22663 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4078 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13964 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2189 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7423 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15139 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2726 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9396 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22587 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4066 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14095 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5685 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1021 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3698 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22442 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14022 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22594 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14697 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22595 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4012 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14222 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21450 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3836 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12990 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9847 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1718 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5852 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22783 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4068 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13890 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21793 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3863 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13322 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22856 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14023 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22727 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14355 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3811 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 670 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2356 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5843 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1521 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3896 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_23_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4826 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 901 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3105 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22751 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14248 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22858 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4128 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13875 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23087 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4074 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13885 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7864 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1389 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4712 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19760 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3551 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12296 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18174 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3362 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11260 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22765 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4039 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14199 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3877 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 695 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2392 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18385 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3318 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11361 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22723 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4099 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14461 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22981 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4083 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14457 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20179 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3610 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12535 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 88 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 15 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 65 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22331 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4100 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14138 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1173 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 210 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 720 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22637 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13957 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11925 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2171 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 7351 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14860 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2673 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9237 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22600 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4071 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14116 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5378 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 964 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3499 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22464 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14045 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22572 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14698 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22596 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4013 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14237 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3764 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12748 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10539 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1842 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6262 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22826 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4064 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13903 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21352 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3785 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22882 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22705 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14327 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3649 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 642 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2262 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5870 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1528 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3913 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_24_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3699 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 698 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2393 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22757 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14248 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22817 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4131 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13866 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23065 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4075 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13891 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6980 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1231 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4165 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19230 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3458 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11984 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17839 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3296 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11029 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22776 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4036 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14201 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3097 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 559 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1917 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17253 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3117 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10602 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22698 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4095 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14428 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22982 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4079 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14416 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19202 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3436 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11912 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21989 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13930 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 181 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 31 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 118 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22635 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4074 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13955 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11311 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2063 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6994 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13641 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2457 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 8468 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22601 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4071 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14132 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3566 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 639 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2337 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22492 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22573 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14720 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22587 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4017 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14254 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20914 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3735 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12655 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9961 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1737 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5913 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22815 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13888 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3554 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12269 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22892 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14094 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22753 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14319 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2744 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 482 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1697 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5746 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1493 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3826 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_25_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3063 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 581 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1978 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22758 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14245 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22793 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4130 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13890 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4075 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13884 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6345 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1118 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3786 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18926 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3404 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11797 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17748 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3280 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10975 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22768 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14205 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2737 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 495 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1693 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16847 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10354 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22698 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4095 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14428 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22982 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4079 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14416 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18959 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3391 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11761 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21881 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4020 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13866 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22528 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13906 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11243 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2051 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6949 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13415 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2417 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 8329 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22601 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4071 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14132 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3123 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 559 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22488 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 4041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14076 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22576 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14722 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22583 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4017 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14243 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20870 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3727 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12627 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9668 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1685 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5740 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22827 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13887 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19292 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3422 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11817 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22894 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14096 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22753 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14296 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2376 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 418 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1479 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5721 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1486 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3809 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_26_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3564 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 674 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2308 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22733 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4065 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14184 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22816 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4130 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13893 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23063 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4072 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13867 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6432 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1134 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3846 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18975 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3430 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11859 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17824 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3297 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11025 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22767 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14206 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3164 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 571 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1971 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17495 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3155 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10768 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22738 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4084 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14477 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22972 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4083 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14355 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19139 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3421 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11903 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22109 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4071 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 388 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 68 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 248 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22646 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13939 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11176 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6917 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13531 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2438 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8401 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22611 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14098 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3277 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 587 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2155 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22477 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4044 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14064 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22577 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14674 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22589 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4017 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14262 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20910 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3737 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12641 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9180 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1600 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5444 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22849 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13874 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19745 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3506 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12110 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22871 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4037 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14097 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22741 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14309 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2720 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 478 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1684 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5721 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1486 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3809 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_27_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3366 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 637 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2171 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22684 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14119 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22824 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4130 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13895 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23085 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13873 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7071 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1248 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4235 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19125 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3456 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11916 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18105 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3342 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11183 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22742 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14170 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3551 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 639 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2211 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17141 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3091 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10555 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22704 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4077 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14379 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22974 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4088 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14338 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19668 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3515 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12231 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 200 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 35 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 147 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22318 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4111 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14195 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 691 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 124 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 428 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22658 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4072 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13960 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11156 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2037 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 6900 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14244 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2560 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8813 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22566 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14107 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3404 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 611 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2234 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22503 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4051 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14062 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22575 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14712 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22599 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4017 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14272 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20822 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3718 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12577 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9459 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1648 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5623 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22835 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13858 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20472 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3635 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12549 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22841 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14121 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22775 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4039 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14304 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2768 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 486 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1710 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5675 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 6 ['dataAktualizacji'] of item 1 is length 0. This (and 1474 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3777 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_28_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3130 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 593 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2023 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22666 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14172 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22796 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4132 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13912 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23078 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13862 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7142 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1260 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 4291 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18957 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3432 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11833 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17743 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3275 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10920 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22761 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14204 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3916 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 703 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2424 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16861 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3044 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10380 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22704 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14360 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22966 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4087 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14341 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19639 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3514 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12208 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 385 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 67 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 269 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22309 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4110 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14205 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1103 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 197 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 676 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22654 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4072 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13987 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11257 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6976 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14311 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2583 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8877 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22594 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14091 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3958 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 711 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2603 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22477 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4053 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14068 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22567 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14660 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22598 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4015 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14252 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20855 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3713 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12584 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9201 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1602 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5449 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22851 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13871 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20898 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3710 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12796 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22846 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14152 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22791 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14317 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2537 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 445 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1574 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5675 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 6 ['dataAktualizacji'] of item 1 is length 0. This (and 1474 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3777 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_29_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3834 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 723 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2478 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22699 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14210 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22836 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4140 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13926 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23093 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4065 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13891 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7256 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1280 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4362 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18520 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3359 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11571 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17612 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3248 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10855 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22779 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14250 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3947 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 707 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2442 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16666 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3008 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10264 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22706 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4076 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14310 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22973 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4087 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14368 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19829 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3548 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12316 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 270 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 47 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 190 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22317 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4110 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14210 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 920 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 165 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 566 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22642 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4074 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13961 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10950 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2004 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 6781 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13016 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2357 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8108 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22589 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3311 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 595 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2174 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22451 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22567 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14648 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22604 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4019 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14281 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20761 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3695 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12521 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9198 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1602 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5448 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22865 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13889 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20860 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3702 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12763 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22837 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14162 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22803 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14284 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2084 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 365 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1279 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5649 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 6 ['dataAktualizacji'] of item 1 is length 0. This (and 1467 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3760 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_30_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3128 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 593 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2021 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22734 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14262 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22783 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4140 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13914 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23105 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13831 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6223 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1100 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3789 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18494 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3349 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11548 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17674 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3256 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10903 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22807 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14306 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3885 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 695 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2402 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14738 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2659 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9066 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22708 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4066 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14266 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22967 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4086 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14351 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19503 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3490 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12118 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 133 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 23 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 98 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22317 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4110 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14193 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 489 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 88 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 313 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22654 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4079 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13962 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10686 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1954 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6605 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12164 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2203 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7585 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22576 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14036 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1751 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 311 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1173 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22473 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14085 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22553 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14593 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22579 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4023 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14276 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19672 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3508 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11870 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9211 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1605 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5446 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22881 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13872 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20633 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3663 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12630 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22852 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14171 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22794 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4039 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14294 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2286 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 401 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1413 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5649 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 6 ['dataAktualizacji'] of item 1 is length 0. This (and 1467 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3760 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_10_31_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 990 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 191 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 644 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22733 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14266 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22822 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4167 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14002 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13788 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3711 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 647 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2227 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16613 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3016 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10369 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2933 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9895 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22810 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14317 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2360 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 426 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1454 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13981 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2522 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 8595 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22705 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14272 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22950 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4084 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14385 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16464 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2956 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10282 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20463 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3771 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13075 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21673 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3903 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13365 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9799 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1798 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10677 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1938 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6657 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22587 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22507 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 4059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14170 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22555 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14599 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20366 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3629 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12903 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18824 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3356 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11367 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7568 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1315 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4433 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22895 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13888 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18964 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3368 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11628 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22847 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14161 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22778 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14321 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 749 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 131 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 450 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 6 ['dataAktualizacji'] of item 1 is length 0. This (and 1292 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3336 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_01_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22738 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14266 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19238 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3531 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11789 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23065 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4037 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13693 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 964 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 167 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 622 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13918 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2522 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 8678 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14479 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2646 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8930 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22593 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4001 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14199 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9664 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1730 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5894 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22705 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4064 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14281 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22934 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4081 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14385 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2164 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7537 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16371 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3012 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10520 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18051 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3235 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11077 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8763 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1611 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5423 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7949 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1459 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4951 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22583 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22633 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14264 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22565 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14593 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2867 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10206 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16692 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2970 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4376 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 759 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2545 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22871 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4025 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13845 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14620 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2589 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8945 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22851 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14155 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20630 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3655 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12973 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3137 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 6 ['dataAktualizacji'] of item 1 is length 0. This (and 810 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2092 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_02_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22756 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4045 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14183 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19867 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3654 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12235 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23096 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13743 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1852 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 323 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1153 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14289 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2588 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8917 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14745 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2691 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9101 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21134 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3755 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13287 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10026 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1794 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6121 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22721 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4069 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14268 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22933 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4080 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14373 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13004 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2339 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8130 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17121 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3139 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10970 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19376 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3468 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11910 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9577 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1756 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5904 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8641 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1578 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5379 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22597 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22636 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4068 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14270 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22517 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14450 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16270 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2910 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10370 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17298 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3077 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10405 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4405 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 767 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2582 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22836 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4023 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13889 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14985 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2651 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9137 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22820 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14150 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20874 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3701 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13133 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 6 ['dataAktualizacji'] of item 1 is length 0. This (and 789 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2045 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_03_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22604 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4039 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14122 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20410 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3753 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12568 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23093 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4036 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13759 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2482 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 431 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1534 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14976 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2710 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9334 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14950 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2725 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9203 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22779 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14197 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 70 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 11 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 46 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10332 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1857 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6328 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22709 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4065 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14308 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22894 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4079 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14343 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13190 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2367 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8234 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18586 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3409 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11878 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18572 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3322 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11406 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9689 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1775 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5967 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9198 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1675 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5703 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22579 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14069 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22628 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4066 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14273 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22529 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14417 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16449 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2942 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10482 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17670 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3142 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10600 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4939 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 859 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2889 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22830 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4021 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13918 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15273 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2702 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9319 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22784 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14121 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21119 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3744 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13309 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3008 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 6 ['dataAktualizacji'] of item 1 is length 0. This (and 775 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2019 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_04_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22603 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4036 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20901 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3844 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12892 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23081 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4036 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13799 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3277 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 567 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1991 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15323 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2768 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9544 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15152 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2762 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9325 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22778 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14113 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 162 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 29 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 105 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10756 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1933 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6569 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22683 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14234 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22907 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4074 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14313 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13012 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2334 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8108 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18874 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3457 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12026 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18892 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3378 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11610 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9553 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1753 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5886 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9735 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1767 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6010 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22543 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14069 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22615 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4064 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14304 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22505 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14381 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17213 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3074 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10939 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17858 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3173 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10715 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4669 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 811 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2732 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22836 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4018 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13894 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15308 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2704 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9326 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22741 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14068 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21568 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3823 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13580 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 780 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_05_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22635 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4044 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14083 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21028 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3867 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12970 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23080 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4036 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13773 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2817 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 488 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1707 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15115 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2734 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9418 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15354 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2801 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9456 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22789 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4037 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14102 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 478 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 89 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 299 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10933 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1965 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6668 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22688 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4062 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14305 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22912 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4077 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14403 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13914 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2493 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 8653 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18951 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3470 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18984 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3407 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11684 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9880 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1815 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 6097 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9861 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1787 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6101 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22540 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14053 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22598 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4063 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14248 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22499 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14403 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17683 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3158 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11236 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17668 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3139 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10576 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2988 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 523 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1754 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22866 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4020 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13910 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2662 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9188 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22771 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21517 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3816 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13539 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3008 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 773 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2015 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_06_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22679 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4051 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14101 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20286 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3740 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12538 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23092 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13797 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3464 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 600 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2084 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14881 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2690 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9260 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15231 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2778 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9383 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22631 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4014 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13964 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9937 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1784 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6068 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22683 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14173 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22903 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4068 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14387 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13269 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 2383 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 8258 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18794 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3437 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11935 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18859 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3380 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11599 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9670 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1770 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5952 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9664 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1757 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5977 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22580 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14127 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22621 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14232 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22465 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14479 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17425 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3114 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11084 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17910 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3185 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10700 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2167 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 383 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1271 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22879 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4019 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13876 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14249 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2528 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8739 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22772 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21571 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3827 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13566 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3008 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 773 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2015 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_07_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22667 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14090 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19526 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3603 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23090 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13784 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2372 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 412 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1458 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14854 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2685 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9248 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15141 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2765 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9334 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21891 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3884 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13499 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8867 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1599 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5418 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22679 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14144 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22899 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4076 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14385 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12292 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2209 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7650 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18583 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3401 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11814 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18175 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3260 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11175 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9620 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1759 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5925 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8213 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1501 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5094 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22598 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14124 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22631 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14233 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22476 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14488 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15401 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2762 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9836 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17615 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3133 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10533 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1432 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 255 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 844 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22904 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4018 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13852 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13841 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2456 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8503 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22770 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21051 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3735 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13237 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2980 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 766 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1994 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_08_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22666 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14090 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19176 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3543 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11859 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23086 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13759 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1831 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 316 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1153 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14464 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2616 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9003 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15098 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2757 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9309 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21045 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3728 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12985 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8686 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1567 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5314 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22685 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14150 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22901 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4075 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14382 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11623 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2089 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 7253 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18448 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3377 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11737 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17903 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3212 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11012 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9597 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1755 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5911 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7895 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1444 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4899 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22599 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14125 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22642 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4053 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14235 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22475 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14491 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15023 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2698 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9600 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17502 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3112 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10467 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 781 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 143 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 458 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22942 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4017 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13861 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13065 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2324 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22772 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4029 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20744 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3678 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2980 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 766 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1994 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_09_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22682 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14071 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19571 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3613 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12090 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23112 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13761 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1966 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 339 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1223 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14371 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2601 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8945 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15286 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2789 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9403 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21419 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3799 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13226 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9604 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1729 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5868 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22680 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14214 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22888 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4071 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14324 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11796 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2124 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7382 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18142 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3319 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11532 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17974 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3221 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1834 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6205 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1472 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5018 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22603 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4037 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14085 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22658 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4051 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14241 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22480 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14489 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14676 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2634 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9361 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17559 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3119 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10500 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1220 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 219 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 724 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22952 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4018 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13882 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2319 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22783 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20186 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3580 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12696 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 781 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_10_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22681 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14101 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19405 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3583 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11982 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23103 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4045 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13808 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2634 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 457 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1593 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14646 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2649 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9127 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15565 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2837 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9579 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22463 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3987 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13931 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10152 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1829 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6201 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22678 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14222 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22864 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4074 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14312 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11197 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2014 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7005 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18252 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3337 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11571 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18099 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3242 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11112 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9742 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1779 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6006 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7540 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1381 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4701 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22621 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14064 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22651 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4053 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14213 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22498 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4029 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14508 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15296 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2742 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9755 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17771 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3153 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10639 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1618 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 287 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 952 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22939 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4016 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13907 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12578 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2239 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7733 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22782 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14066 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20217 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3583 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12728 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 782 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2044 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_11_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22663 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14097 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19000 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3510 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11730 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23100 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4044 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13796 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2325 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 405 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1424 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14342 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2596 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 8973 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15495 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2824 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9539 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22123 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3927 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13715 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9888 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1781 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22669 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14231 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22861 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4080 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14337 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11019 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1983 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6902 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17963 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3285 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11398 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17806 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3186 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10926 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9673 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1766 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5965 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7220 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1323 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4500 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22626 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22644 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14210 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22510 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14534 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14800 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2654 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9434 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17677 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3135 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10584 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1592 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 283 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 937 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22942 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4016 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13911 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12345 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2199 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7600 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22792 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3555 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12633 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 782 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2044 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_12_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22611 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14081 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18867 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3488 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11647 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23064 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13799 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2798 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 486 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1694 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14795 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2676 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9259 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15495 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2819 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9538 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22772 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14131 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9697 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1746 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5918 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22671 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14262 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22891 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4069 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14343 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11348 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7121 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17999 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3291 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11397 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17872 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3199 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10963 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9792 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1787 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7273 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1333 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4534 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22600 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4037 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14020 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22649 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4051 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14254 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22504 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14480 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15376 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2754 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9791 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17903 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3177 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10727 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2237 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 395 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1316 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22952 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4019 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13956 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12001 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2138 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7398 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22776 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4029 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13986 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19930 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3533 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12556 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3071 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 789 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_13_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22600 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14028 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17903 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3300 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11014 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23068 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13819 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2775 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 482 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1686 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14863 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2695 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9333 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15237 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2771 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9382 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22799 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14190 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 230 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 41 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 144 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10260 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1846 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6263 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22681 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14248 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22858 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4065 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14321 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11242 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2016 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18133 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3311 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11466 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17803 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3189 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10933 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9892 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1803 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6105 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6186 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1140 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3880 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22603 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13985 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22643 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14258 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22516 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14441 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14655 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2626 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9350 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17553 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3116 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10516 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2824 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 495 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1658 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22934 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4018 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13963 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11845 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2110 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7295 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22754 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14016 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20139 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3572 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12687 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3071 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 789 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_14_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22581 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14025 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17431 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3214 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10732 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23026 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4044 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13797 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2105 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 365 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1307 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14653 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2658 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9210 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14768 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2688 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9096 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22720 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4024 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14133 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9652 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1738 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5902 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22673 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14209 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22855 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14311 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10572 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1897 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6626 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17729 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3240 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11211 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17235 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3089 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10580 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9821 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1792 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6088 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5364 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 993 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3372 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22617 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13998 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22658 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14276 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22498 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14429 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12982 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2330 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8283 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17006 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3018 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10199 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2359 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 415 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1383 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22932 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4018 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13972 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11089 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1973 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6850 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22708 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4024 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13959 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19719 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3499 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12431 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3071 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 789 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_15_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22581 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14024 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16986 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3134 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10463 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23021 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13784 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1602 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 277 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1019 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14493 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2630 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9114 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14634 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2664 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9015 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22313 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3952 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13881 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9357 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1686 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5728 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22664 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14196 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22854 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4065 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14326 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9878 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1775 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6191 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17636 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3222 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11150 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16694 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2995 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10248 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9641 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1760 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5978 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4922 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 916 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3106 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22622 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14003 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22669 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14296 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22499 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14434 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12462 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2238 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7942 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16983 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3013 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10182 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2005 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 355 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1180 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22959 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4017 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13964 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10641 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1893 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6563 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22700 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4020 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13971 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19442 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3450 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12258 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2996 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 768 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2003 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_16_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22587 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17072 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3164 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10574 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23026 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13765 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1579 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 273 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1005 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14336 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2601 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9006 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14789 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2692 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9097 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21576 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3826 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13395 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8689 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1565 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5326 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22660 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4051 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14210 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22874 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4069 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14333 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9577 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1723 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5999 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17332 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3164 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10938 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16867 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3025 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10403 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9451 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1726 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5866 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5208 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 963 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3285 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22605 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14024 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22660 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14298 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22541 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14457 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13440 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2410 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8591 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3022 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10235 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1477 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 263 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 871 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22978 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4013 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13905 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10266 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1823 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6322 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22664 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4020 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13967 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18870 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3349 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11918 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2997 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 767 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1997 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_17_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22591 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4051 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14066 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17483 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3240 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10821 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23023 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13785 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1804 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 313 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1143 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14876 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2701 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9363 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15349 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2801 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9460 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22540 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4004 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14017 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9581 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1722 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5871 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22656 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14243 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22832 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4081 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14345 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10205 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1830 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6383 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17682 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3251 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11191 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17225 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3091 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10599 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9520 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1743 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5926 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5139 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 948 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3238 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22594 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14017 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22649 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14320 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22534 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14498 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14229 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2550 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9099 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17269 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10371 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2384 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 419 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1402 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13978 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11076 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1971 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6813 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22713 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14029 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19368 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3445 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12258 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4492 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1166 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2994 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_18_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22602 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14076 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19085 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3526 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11798 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13917 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2428 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 421 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1473 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15254 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2767 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9590 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15368 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2807 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9468 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22727 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14108 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 162 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 29 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 105 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10296 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1856 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6312 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22669 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4053 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14284 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22821 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4076 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14334 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10923 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1957 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6813 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17985 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3304 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11397 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17859 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3209 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10976 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9848 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1805 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 6136 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5754 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1060 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3625 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22572 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4025 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14018 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22606 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14302 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22553 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14499 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15538 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2778 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9924 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17146 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10280 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2758 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 483 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1616 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23026 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13996 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11363 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2022 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6990 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22738 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4037 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13995 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19832 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3527 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12557 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4444 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1152 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2963 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_19_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22601 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14063 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19304 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3562 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11931 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13948 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2893 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 502 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1757 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15439 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2796 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9693 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15200 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2774 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9368 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22732 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14092 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 198 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 679 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10509 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1895 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6443 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22692 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14249 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22843 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4068 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14361 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11553 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2071 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7208 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18632 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3425 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11837 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18439 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3320 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11344 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9781 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1792 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 6097 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5367 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 991 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3383 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22592 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4024 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13986 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22570 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14251 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22567 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14526 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16500 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2946 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10532 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17215 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10334 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3060 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 535 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1798 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13955 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11795 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2096 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 7247 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22711 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13995 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20107 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3580 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12746 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4619 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1201 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3077 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_20_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22660 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19117 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3528 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11837 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13970 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2780 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 482 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1686 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15743 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2856 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9927 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15198 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2774 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9374 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22726 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14138 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 194 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 663 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9988 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1802 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6128 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22697 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14322 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22875 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4062 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14354 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12154 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2181 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7575 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18861 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3467 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11987 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18734 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3371 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11553 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9463 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1733 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5913 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5390 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 995 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3397 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22655 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4025 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13996 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22547 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14198 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22533 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4037 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14494 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17019 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10868 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16976 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3007 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10169 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3432 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 599 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2021 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4066 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13947 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12171 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2159 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7452 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22706 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4028 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13994 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20175 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3592 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12760 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4617 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1199 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 3076 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_21_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22657 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18135 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3355 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11260 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13940 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1896 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 329 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1184 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15212 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2764 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9612 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14971 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2734 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9250 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22744 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14165 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 572 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 106 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 357 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8971 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1613 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5485 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22690 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14281 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22878 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4066 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14298 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10977 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1968 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6873 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18690 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3441 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11887 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18107 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3262 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11145 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9170 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1680 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5729 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4109 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 764 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2597 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22649 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14019 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22568 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4053 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14260 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22523 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14484 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14957 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2678 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9540 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16482 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 2919 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9886 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3015 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 527 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1769 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4066 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13946 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11554 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2051 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7088 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22710 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4028 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13976 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19991 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3559 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12643 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4487 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1164 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2997 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_22_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22673 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17527 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3247 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10886 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13936 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1733 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 301 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1095 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15127 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2747 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9560 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14592 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2666 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9015 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22695 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4039 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14142 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8739 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1573 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5347 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22699 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14284 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22877 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4065 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14304 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10780 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1932 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6745 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18466 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3399 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11748 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17838 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3213 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10965 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9127 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1672 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5707 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3671 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 684 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2327 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22657 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14020 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22563 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4053 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14226 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22523 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14477 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14532 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2602 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9273 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16482 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 2919 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9886 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2714 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 475 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1588 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23053 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4066 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13943 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11103 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1975 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6826 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22719 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4028 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13978 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19925 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3546 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12593 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4487 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1164 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2997 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_23_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22692 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14076 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18333 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3391 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11365 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23068 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14086 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3006 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 521 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1820 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15708 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2853 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9928 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14776 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2697 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9138 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22735 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4044 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14132 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 318 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 57 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 196 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9216 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1658 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5648 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22728 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14376 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22827 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14359 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13120 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2362 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 8184 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18566 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3413 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11780 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18311 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3297 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11269 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8970 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1644 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5618 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4339 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 804 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2736 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22649 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4029 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14025 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22574 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14229 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22541 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14506 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15390 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2754 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9809 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16781 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2973 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3203 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 559 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1883 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4064 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13964 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10470 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1864 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 6444 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22737 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13981 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21002 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3738 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13245 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4487 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1164 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2997 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_24_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22670 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4045 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18486 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3419 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11480 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3007 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 522 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1830 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15987 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2904 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10107 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15144 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2759 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9357 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22723 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14166 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1244 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 230 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 787 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9783 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1763 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5987 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22711 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14406 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22831 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14379 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13701 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2469 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8559 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18567 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3417 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11779 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18281 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3289 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11254 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9125 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1670 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5695 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4998 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 923 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3165 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22640 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4025 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14036 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22557 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14178 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22540 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4027 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14431 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15765 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2818 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16639 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2949 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9980 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3990 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 699 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2339 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23101 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4064 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13975 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11453 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7016 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22699 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14002 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20715 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3688 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13088 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4561 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1185 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_25_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22752 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14036 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19275 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3557 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11983 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23014 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13972 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2571 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 445 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1563 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16623 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3026 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10482 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15683 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2852 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9694 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22721 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14095 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1405 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 259 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 889 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10654 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1921 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6528 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22737 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14451 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22837 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14355 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13260 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2391 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 8282 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18924 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3482 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3428 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11723 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9649 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1766 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6022 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5504 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1015 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3476 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22644 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4021 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14000 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22555 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14164 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22531 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4027 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14453 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16511 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2950 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10549 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16801 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2972 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5279 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 924 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3129 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4063 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13919 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11916 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2119 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7299 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22732 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13995 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20955 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3731 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13196 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4533 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1178 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3027 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_26_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22756 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19315 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3564 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12006 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13997 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3075 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 534 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1858 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16785 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10546 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15658 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2849 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9649 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22720 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14138 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2108 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 383 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1327 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10457 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1881 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 6404 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22710 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4044 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14499 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22874 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14466 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14023 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2523 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8738 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18710 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3439 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11910 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18643 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3358 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11490 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10080 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1846 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6313 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5949 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1096 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3745 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22673 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4022 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13996 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22513 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14199 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22568 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14436 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17004 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3037 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10836 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16651 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2945 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9964 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5545 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 972 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3292 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4062 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13947 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11884 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2115 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 7281 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22742 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13972 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20956 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3735 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13196 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4583 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1192 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3064 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_27_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22752 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18603 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3442 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11560 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4029 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14001 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3646 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 638 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2224 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16598 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3013 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10414 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16163 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2937 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9961 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22724 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14105 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1836 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 335 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1163 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10247 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1842 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 6273 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22691 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4044 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14502 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22877 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14465 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2517 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8750 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18779 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3444 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11937 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18633 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3362 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11505 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10384 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1923 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6554 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5852 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1080 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3679 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22670 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4023 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13955 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22548 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14225 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22502 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14394 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16921 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3021 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10772 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15645 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2775 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9378 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5604 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 980 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3325 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4062 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13911 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11371 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2023 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6978 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22734 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4029 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13979 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20564 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3655 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12901 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4583 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1192 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3064 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_28_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22752 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14064 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18099 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3347 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11242 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23014 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13988 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3152 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 546 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1922 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16399 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2976 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10286 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15934 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2896 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9828 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22721 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14099 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1318 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 243 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 836 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9543 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1712 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5828 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22674 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14498 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22891 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4072 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14507 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13234 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2377 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8253 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18463 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3381 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11737 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17870 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3226 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11016 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10165 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1860 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6346 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5384 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 995 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3381 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22657 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4023 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13963 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22540 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14238 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22541 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14410 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15229 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2725 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9715 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15641 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2776 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9383 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5148 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 900 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23053 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13900 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10806 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1923 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6633 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22733 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4027 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13975 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20000 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3560 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12558 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4540 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1184 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3037 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_29_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22750 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14060 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17820 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3298 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 11067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23014 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14003 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2530 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 437 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1545 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16699 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3027 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10488 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15776 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2868 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9729 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22716 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14097 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1018 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 190 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 651 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9135 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1640 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5585 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22680 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14503 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22890 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4072 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14512 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12811 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2301 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7989 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18396 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3369 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11696 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17596 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3176 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10842 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10094 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1848 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6303 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5273 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 975 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3315 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22651 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4023 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13960 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22571 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14279 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22541 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14412 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14607 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2617 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9304 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15619 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2772 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9370 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5085 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 888 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3011 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23052 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13896 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10527 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1875 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6463 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22730 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4025 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13969 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19752 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3516 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12407 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4516 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1177 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3018 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_11_30_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22763 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14085 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17566 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3251 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10900 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13900 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2180 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 375 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1374 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16477 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2987 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10352 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15604 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2838 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9632 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22715 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14121 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 945 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 178 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 607 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8711 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1565 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5326 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22669 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14491 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22923 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14494 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2345 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 8140 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18479 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3381 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11731 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17430 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3148 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10757 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 6 ['emailOsobyZglPracodawca'] of item 1 is length 0. This (and 10475 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1925 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 6585 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5628 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1040 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3541 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22627 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4018 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13940 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22587 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14318 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22548 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4037 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14360 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14537 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2601 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9279 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15616 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2772 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9353 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4652 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 812 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2758 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23069 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13899 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10164 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1811 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6251 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22720 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4024 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13964 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19795 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3525 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12427 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4467 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1163 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2982 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_12_01_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22764 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14064 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2617 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8765 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22807 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3984 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13770 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13992 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2544 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8835 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14077 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2558 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8665 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20716 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3688 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12893 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4776 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 855 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2919 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22667 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14444 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22934 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14529 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10684 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1926 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6675 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15928 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2903 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10142 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15741 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2843 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9685 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8940 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1664 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5700 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3331 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 626 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2109 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22608 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4025 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13915 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22696 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14399 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22514 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4037 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14285 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10736 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1937 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6875 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14988 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2655 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8948 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1247 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 223 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 727 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4013 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13842 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7405 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1320 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 4595 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22769 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4024 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13991 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17699 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3148 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11091 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3071 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 806 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2066 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_12_02_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22734 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4036 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14632 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2723 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9107 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4024 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13898 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 16 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14232 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2591 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8996 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13939 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2527 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8534 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20845 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3715 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12979 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5593 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1000 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3424 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22675 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4037 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14494 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22966 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14553 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11516 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2077 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7182 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16637 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3039 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10587 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16388 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2954 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10076 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8237 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1532 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5210 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3640 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 679 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2292 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22630 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4027 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13932 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22696 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14407 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22487 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14312 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11666 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2097 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7453 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15417 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2728 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9223 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 619 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 115 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 358 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4013 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13884 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7897 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1406 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4891 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22753 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4023 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13997 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17518 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3118 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10960 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3068 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 812 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2069 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_12_03_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22707 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14075 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15075 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2805 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9388 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23014 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4035 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13883 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 462 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 79 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 311 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14320 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2603 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14610 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2642 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8993 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21143 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3767 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13216 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5348 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 958 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3273 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22657 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14457 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22987 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4051 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14624 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11523 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2077 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 7168 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16460 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3009 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10483 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17027 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3065 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10477 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8244 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1533 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5190 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4142 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 773 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2610 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22595 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4018 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13899 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22687 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14404 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22516 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4044 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14299 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12275 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2200 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7849 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15488 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2740 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9281 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22354 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3901 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13456 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8220 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1462 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5083 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22774 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4023 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17530 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3121 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11009 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3400 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 900 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2289 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_12_04_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22704 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14056 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15512 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2882 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9676 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13875 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1302 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 223 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 842 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14109 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2567 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8932 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14372 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2599 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8827 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22205 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3943 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13854 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6617 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1188 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4053 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22690 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4029 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14462 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22966 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14603 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11728 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2113 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7308 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16857 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3092 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10762 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17126 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3084 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10511 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8379 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1554 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5290 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3940 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 737 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2476 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22613 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4015 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13900 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22691 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4041 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14420 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22517 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14327 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11626 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2090 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 7437 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15399 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2724 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9236 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22914 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4012 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13811 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8644 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1538 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5350 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22771 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4022 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14023 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17627 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3138 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11083 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3454 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 914 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2323 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_12_05_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22687 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14868 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2765 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9270 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23028 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13901 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 930 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 159 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 611 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13994 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2543 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8856 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14307 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2587 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8786 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21782 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3870 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13580 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5784 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1036 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3534 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22674 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14425 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22968 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14618 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11107 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1994 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6899 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16585 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10602 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16660 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3000 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10235 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8153 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1512 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5141 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3182 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 598 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2017 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22640 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4020 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13906 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22720 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14420 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22526 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14322 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10330 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1862 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6621 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15376 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2720 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9219 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22665 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3965 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13656 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8081 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1438 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5002 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22765 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4021 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17229 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3066 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10855 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3967 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2653 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_12_06_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22689 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4034 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14619 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2721 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9130 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13917 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 625 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 107 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 420 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13904 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2527 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8802 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14260 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2579 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8757 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21624 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3842 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13482 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5632 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1008 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3439 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22673 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14432 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22967 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14616 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10417 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1870 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6490 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16492 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10540 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16461 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2964 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 10115 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8039 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1491 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2580 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 487 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1638 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22629 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4027 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13875 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22710 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14416 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22528 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14325 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10156 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1830 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6514 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15330 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2712 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9187 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22531 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3941 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13571 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7796 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1388 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4833 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22780 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4021 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16892 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3005 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10646 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3967 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2653 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_12_07_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22725 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14103 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15207 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2825 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9475 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13926 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 625 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 107 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 420 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14088 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2556 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 8882 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14401 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2602 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8837 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22058 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3916 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13704 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6009 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1076 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3668 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22680 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4030 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14397 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22989 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4053 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14663 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11751 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2110 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7337 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16869 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3096 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10704 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 16992 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3066 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10467 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8044 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1488 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5078 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3024 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 568 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1913 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22602 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4021 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13834 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22704 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4039 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14404 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22539 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4042 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14299 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10837 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1950 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6937 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15380 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2720 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9212 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22780 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3984 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13709 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7757 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1382 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4809 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22748 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4020 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14033 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17275 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10888 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1065 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 2710 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2020\2020_12_08_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22757 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4031 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14108 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15441 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2872 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9637 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23048 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4032 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13927 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 836 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 143 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 553 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14320 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2598 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 9027 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14604 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2637 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8955 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21950 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3900 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13606 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6809 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1224 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 4179 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22686 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4028 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14374 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23012 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4050 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14699 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12912 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2317 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17141 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3155 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10896 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17798 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3215 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10986 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7954 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1470 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5016 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3465 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 645 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2170 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22598 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4019 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13852 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22689 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4038 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14371 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22534 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4044 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14316 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10784 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1942 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6902 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 15464 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2734 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9268 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 829 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 151 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 490 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23036 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4023 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13885 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8285 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1474 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5132 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22763 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4021 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14015 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 17330 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3082 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 10893 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 3983 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1046 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 2670 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
cbop_2020 <- remove_duplicates(cbop_2020)
cbop_2022 <- create_table(cbop_2022, files)
Warning in readLines(file) :
incomplete final line found on 'data\2022\2022_01_01_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22801 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4054 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13910 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8370 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1564 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5172 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21609 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3792 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12911 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 11841 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2166 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7349 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22752 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14419 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9834 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1807 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5997 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13184 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2499 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8357 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22872 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4018 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13712 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7719 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1437 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 4805 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22472 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4091 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14548 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22831 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4136 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14301 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8180 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1524 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5340 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18501 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3263 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11142 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22920 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4026 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14049 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7784 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1383 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4806 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22785 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4093 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14123 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1180 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 233 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 747 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14009 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2561 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 8852 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21171 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3824 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13486 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22914 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14270 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 2254 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 430 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 1473 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20114 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3733 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12518 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8686 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1600 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5374 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12464 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2226 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7446 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8320 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 2014 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5437 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2022\2022_01_02_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22808 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4057 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13911 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 5083 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 981 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3141 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21285 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3734 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12719 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10721 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1970 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 6658 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22751 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4075 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14423 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8666 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1597 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5274 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13076 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2479 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8293 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22872 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4018 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13712 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7368 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1377 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 4597 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22472 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4091 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14548 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22820 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4140 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14314 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7751 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1444 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5065 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 18456 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3254 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 11114 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22901 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4026 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14051 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7552 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1339 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4655 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22802 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4105 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14145 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 632 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 125 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 397 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13506 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2468 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 8526 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20962 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3788 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13359 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22919 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4061 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14272 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1833 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 355 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1212 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 19375 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3605 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12099 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8686 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1600 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5374 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12303 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2198 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7355 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8320 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 2014 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5437 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2022\2022_01_03_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22808 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4055 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13896 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 6244 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1188 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 3855 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22017 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3860 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13164 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12383 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2297 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7723 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22729 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14405 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8165 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1507 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4964 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13609 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2573 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8629 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22889 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4018 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13679 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8127 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1507 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5095 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22473 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4095 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14493 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22808 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4139 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14343 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8544 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1588 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5557 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20238 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3568 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 12186 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22922 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4025 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 7461 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1328 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 4623 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22648 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4093 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14067 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13434 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2460 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8523 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20648 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3734 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13086 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22913 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4085 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14411 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 906 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 184 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 610 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20247 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3773 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12661 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8822 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1623 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5443 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 12680 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2266 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 7589 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8343 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2018 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5450 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
Warning in readLines(file) :
incomplete final line found on 'data\2022\2022_01_04_full.json'
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22787 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4047 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13859 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8266 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1553 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5060 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 23099 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4043 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13781 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 891 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 158 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 594 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13168 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2434 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8190 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22697 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4073 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14361 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 10316 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1896 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 6338 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 14539 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2742 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 9207 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22895 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4015 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13738 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9433 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1739 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5827 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22399 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4087 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14313 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22826 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4142 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14386 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8665 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1608 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5629 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20970 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3691 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 12606 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22873 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4017 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13968 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8217 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 1462 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5102 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22837 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4114 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 14127 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 300 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 51 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 179 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13837 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2527 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 8813 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 20655 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 3741 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 13059 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 22925 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4071 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 14431 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 1643 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 322 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 1087 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 21966 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 4070 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 13661 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 9157 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 4 ['kodKategoriiOferty'] of item 1 is length 0. This (and 1683 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 5645 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 13009 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 5 ['potwierdzenieWiedzy'] of item 1 is length 0. This (and 2323 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 1 ['dataZakonczeniaPracy'] of item 1 is length 0. This (and 7800 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(prac, idcol = "hash") :
Column 1 ['nrBudynkuPracodawca'] of item 1 is length 0. This (and 8413 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$pozostaleDane) :
Column 6 ['dataAktualizacji'] of item 1 is length 0. This (and 2027 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning in rbindlist(cbop[[i]]$warunkiPracyIPlacy) :
Column 5 ['lokalizacja'] of item 1 is length 0. This (and 5496 others like it) has been filled with NA (NULL for list columns) to make each item uniform.
Warning: All formats failed to parse. No formats found.
#2021
files <- Sys.glob('data\\2021\\*.json')
cbop_2021_1 <- list()
files_1 <- files[1:floor(length(files)/2)]
cbop_2021_1 <- create_table(cbop_2021_1, files_1)
cbop_2021_1 <- remove_duplicates(cbop_2021_1)
cbop_2021_2 <- list()
files_2 <- files[(1+floor(length(files)/2)):length(files)]
cbop_2021_2 <- create_table(cbop_2021_2, files_2)
cbop_2021_2 <- remove_duplicates(cbop_2021_2)
cbop_2021 <- rbindlist(list(cbop_2021_1, cbop_2021_2))
rm(cbop_2021_1)
rm(cbop_2021_2)
cbop_2021 <- remove_duplicates(cbop_2021)
#Useful columns
#columns <- c('file', 'hash', 'poz_identyfikatorOferty', 'poz_kodZawodu', 'poz_grupaZawodu', 'poz_lWolnychMiejsc', 'poz_dataUdostepnieniaOferty', 'poz_dataPrzyjZglosz', 'poz_ofertaWaznaDo', 'poz_ofertaZgloszonaPrzez', 'poz_ofertaZgloszonaPrzezKodJednostki', 'war_kraj', 'war_wojewodztwo', 'war_kodWojewodztwa', 'war_powiat', 'war_kodPowiatu', 'war_gmina', 'war_miejscowosc', 'war_kodMiejscowosci', 'war_ulica', 'war_miejscePracy', 'war_zawod', 'war_stanowisko', 'war_wymiarEtatu', 'war_rodzajZatrudnienia', 'war_kodRodzajuZatrudnienia', 'war_pensjaNetto', 'prac_nazwaUrzeduPracy', 'prac_nip', 'prac_regon', 'statusOferty', 'kod_pocztowy')
#2020-2022 All
cbop_all <- rbindlist(list(cbop_2020, cbop_2021, cbop_2022))
cbop_all <- remove_duplicates(cbop_all)
#Create RDS files
saveRDS(cbop_2020, file = "cbop_2020.rds")
saveRDS(cbop_2021, file = "cbop_2021.rds")
saveRDS(cbop_2022, file = "cbop_2022.rds")
saveRDS(cbop_all, file = "cbop_all.rds")
LS0tDQp0aXRsZTogIlIgTm90ZWJvb2siDQpvdXRwdXQ6IGh0bWxfbm90ZWJvb2sNCi0tLQ0KDQpgYGB7cn0NCmxpYnJhcnkoUmNwcFNpbWRKc29uKQ0KbGlicmFyeShkYXRhLnRhYmxlKQ0KbGlicmFyeSgibHVicmlkYXRlIikNCmxpYnJhcnkodGlkeXZlcnNlKQ0KbGlicmFyeShqYW5pdG9yKQ0KbGlicmFyeShzdHJpbmdpKQ0KYGBgDQoNCmBgYHtyfQ0KcmVhZF9jYm9wIDwtIGZ1bmN0aW9uKGZpbGUpIHsNCiAgY2JvcF9maWxlIDwtIHJlYWRMaW5lcyhmaWxlKQ0KICBjYm9wIDwtIGZwYXJzZShqc29uID0gY2JvcF9maWxlWzFdKQ0KDQogIGNib3BfbGlzdCA8LSBsaXN0KCkNCiAgZm9yIChpIGluIDE6bGVuZ3RoKGNib3ApKSB7DQogICAgDQogICAgICBwcmFjIDwtIGNib3BbW2ldXSRkYW5lUHJhY29kYXdjeQ0KICAgICAgbmFtZXMocHJhYykgPC0gY2JvcFtbaV1dJGhhc2gNCiAgICAgIHByYWNfZGYgPC0gIHJiaW5kbGlzdChwcmFjLCBpZGNvbCA9ICJoYXNoIikNCiAgICAgIHNldG5hbWVzKHByYWNfZGYsIG5hbWVzKHByYWNfZGYpWy0xXSwgcGFzdGUwKCJwcmFjXyIsIG5hbWVzKHByYWNfZGYpWy0xXSkpDQogICAgICANCiAgICAgIHBvem9zdGFsZURhbmUgPC0gcmJpbmRsaXN0KGNib3BbW2ldXSRwb3pvc3RhbGVEYW5lKQ0KICAgICAgc2V0bmFtZXMocG96b3N0YWxlRGFuZSwgbmFtZXMocG96b3N0YWxlRGFuZSksIHBhc3RlMCgicG96XyIsIG5hbWVzKHBvem9zdGFsZURhbmUpKSkNCiAgICAgIA0KICAgICAgd2FydW5raVByYWN5SVBsYWN5IDwtIHJiaW5kbGlzdChjYm9wW1tpXV0kd2FydW5raVByYWN5SVBsYWN5KQ0KICAgICAgc2V0bmFtZXMod2FydW5raVByYWN5SVBsYWN5LCBuYW1lcyh3YXJ1bmtpUHJhY3lJUGxhY3kpLCANCiAgICAgICAgICAgICAgIHBhc3RlMCgid2FyXyIsIG5hbWVzKHdhcnVua2lQcmFjeUlQbGFjeSkpKQ0KICAgICAgDQogICAgICBwcmFjX2RmIDwtIGNiaW5kKHByYWNfZGYsIHBvem9zdGFsZURhbmUsIHdhcnVua2lQcmFjeUlQbGFjeSkNCiAgICAgIA0KICAgICAgcHJhY19kZlssICI6PSIodHlwT2ZlcnR5ID0gY2JvcFtbaV1dJHR5cE9mZXJ0eSwNCiAgICAgICAgICAgICAgICAgICAgIGN6eVdhem5hID0gY2JvcFtbaV1dJGN6eVdhem5hLA0KICAgICAgICAgICAgICAgICAgICAgc3RhdHVzT2ZlcnR5ID0gY2JvcFtbaV1dJHN0YXR1c09mZXJ0eSldDQogICAgICBjYm9wX2xpc3RbW2ldXSA8LSBwcmFjX2RmDQogIH0NCg0KICBjYm9wX2xpc3RfZGYgPC0gcmJpbmRsaXN0KGNib3BfbGlzdCkNCiAgY2JvcF9saXN0X2RmWywgLlNELCAuU0Rjb2xzID0gbmFtZXMoY2JvcF9saXN0X2RmKSAlbGlrZSUgImRhdGF8b2ZlcnRhIl0NCiAgY2JvcF9saXN0X2RmWywgIjo9Iihwb3pfZGF0YVByenlqWmdsb3N6PWRteShwb3pfZGF0YVByenlqWmdsb3N6KSwNCiAgICAgICAgICAgICAgICAgICAgICBwb3pfb2ZlcnRhV2F6bmFEbz1kbXkocG96X29mZXJ0YVdhem5hRG8pKV0NCiAgDQogIGZpbmFsX2RmIDwtIGNib3BfbGlzdF9kZlsgIHR5cE9mZXJ0eSA9PSAiT0ZFUlRBX1BSQUNZIiAmIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjenlXYXpuYSA9PSBUUlVFICYgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgIHdhcl9rcmFqID09ICJQb2xza2EiICYgDQogICAgICAgICAgICAgICAgICAgICAgICAoIWlzLm5hKHByYWNfcmVnb24pIHwgIWlzLm5hKHByYWNfbmlwKSkgJg0KICAgICAgICAgICAgICAgICAgICAgICAgICB3YXJfcm9kemFqWmF0cnVkbmllbmlhICVpbiUgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjKCJVbW93YSBvIHByYWPEmSBuYSBjemFzIG9rcmXFm2xvbnkiLCAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIlVtb3dhIG8gcHJhY8SZIG5hIGN6YXMgbmllb2tyZcWbbG9ueSIsIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiVW1vd2EgbyBwcmFjxJkgdyB6YXN0xJlwc3R3aWUiLCANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIlVtb3dhIG8gcHJhY8SZIG5hIG9rcmVzIHByw7NibnkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiVW1vd2EgbmEgY3phcyB3eWsuIG9rcmXFm2xvbmVqIHByYWN5IildWw0KICAgICAgICAgICAgICAgICAgICAgICAgICAsICI6PSIocHJhY19uaXAgPSBzdHJfcmVtb3ZlX2FsbChwcmFjX25pcCwgIi0iKSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGtvZF9wb2N6dG93eSA9IHN0cl9leHRyYWN0KHdhcl9taWVqc2NlUHJhY3ksDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiXFxkezJ9XFwtXFxkezN9IikpXVsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAhcHJhY19uaXAgJWluJSBjKCIwMDAwMDAwMDAwIiwgIjExMTExMTExMTEiKV0NCg0KICBmaW5hbF9kZlssICI6PSIod2FyX2dtaW5hID0gdG9sb3dlcih3YXJfZ21pbmEpLCANCiAgICAgICAgICAgICAgICAgIHdhcl91bGljYT10b2xvd2VyKHdhcl91bGljYSksDQogICAgICAgICAgICAgICAgICB3YXJfbWllanNjb3dvc2M9dG9sb3dlcih3YXJfbWllanNjb3dvc2MpLA0KICAgICAgICAgICAgICAgICAgd2FyX3N0YW5vd2lza289dG9sb3dlcih3YXJfc3Rhbm93aXNrbykpXQ0KICBmaW5hbF9kZlssIHdhcl91bGljYTo9c3RyX3JlcGxhY2Uod2FyX3VsaWNhLCAgInBsXFwuIiwgInBsYWMgIildCQ0KICBmaW5hbF9kZlssIHdhcl91bGljYTo9c3RyX3JlcGxhY2Uod2FyX3VsaWNhLCAgImFsXFwuIiwgImFsZWphICIpXQkNCiAgZmluYWxfZGZbLCB3YXJfdWxpY2E6PXN0cl9yZXBsYWNlKHdhcl91bGljYSwgICIgICIsICIgIildCQ0KICBmaW5hbF9kZlssIHdhcl91bGljYTo9c3RyX3JlbW92ZSh3YXJfdWxpY2EsICAiXlxcLnwtJCIpXQ0KICBmaW5hbF9kZlssICI6PSIod2FyX2dtaW5hID0gc3RyX3JlbW92ZSh3YXJfZ21pbmEsICJtLnN0LiAiKSldDQogIGZpbmFsX2RmWywga29kX3BvY3p0b3d5Oj1zdHJfcmVtb3ZlKGtvZF9wb2N6dG93eSwgIjAwLTAwMCIpXQ0KICBmaW5hbF9kZltrb2RfcG9jenRvd3kgPT0gIiIsIGtvZF9wb2N6dG93eSA6PSBOQV0NCiAgZmluYWxfZGZbLCBwb3pfa29kWmF3b2R1IDo9IHN0cl9yZW1vdmUocG96X2tvZFphd29kdSwgIlJQZDA1N1xcfCIpXQ0KICBmaW5hbF9kZlssIHBvel9ncnVwYVphd29kdSA6PSBzdWJzdHIocG96X2tvZFphd29kdSwgMSwgMSldDQogIGZpbmFsX2RmWywgcHJhY19yZWdvbiA6PSBzdWJzdHIocHJhY19yZWdvbiwgMSwgOSldDQogIGZpbmFsX2RmWywgcG96X2RhdGFVZG9zdGVwbmllbmlhT2ZlcnR5IDo9IHltZChwb3pfZGF0YVVkb3N0ZXBuaWVuaWFPZmVydHkpXQ0KDQogIHJldHVybihmaW5hbF9kZikNCn0NCmBgYA0KDQpgYGB7cn0NCiNDaG9zZW4gY29sdW1ucyB0byBrZWVwDQpjb2x1bW5zX3RvX2tlZXAgPC0gYygnZmlsZScsICdoYXNoJywgJ3ByYWNfb3NvYmFEb0tvbnRha3R1JywgJ3ByYWNfbnJUZWxlZm9udScsICdwcmFjX25pcCcsICdwcmFjX25hendhVXJ6ZWR1UHJhY3knLCAncHJhY19yZWdvbicsICdwb3pfa29kWmF3b2R1JywgJ3Bvel96YXdvZCcsICdwb3pfZ3J1cGFaYXdvZHUnLCAncG96X2xXb2xueWNoTWllanNjJywgJ3Bvel9rb2RLYXRlZ29yaWlPZmVydHknLCAncG96X3Vkb3N0ZXBuaW9ub0RvRVVSRVMnLCAncG96X2RsYVBvYm9yb3d5Y2gnLCAncG96X29mZXJ0YURsYU9zb2JaYXJlaicsICdwb3pfaWRlbnR5ZmlrYXRvck9mZXJ0eScsICdwb3pfbFdvbG55Y2hNaWVqc2NEbGFOaWVwZWxuJywgJ3Bvel9maW5hbnNaUGZyb24nLCAncG96X29mZXJ0YVdhem5hRG8nLCAncG96X29mZXJ0YVpnbG9zem9uYVByemV6JywgJ3Bvel9vZmVydGFaZ2xvc3pvbmFQcnplektvZEplZG5vc3RraScsICdwb3pfZGF0YVByenlqWmdsb3N6JywgJ3dhcl9kYXRhWmFrb25jemVuaWFQcmFjeScsICd3YXJfbWllanNjZVByYWN5Q3psb25EcnVnaScsICd3YXJfemFrcmVzT2Jvd2lhemtvdycsICd3YXJfb3Bpc09mZXJ0eScsICd3YXJfcm9kemFqWmF0cnVkbmllbmlhJywgJ3dhcl9taWVqc2NlUHJhY3lDemxvblBpZXJ3c3p5JywgJ3dhcl9sR29kemluV01pZXNpYWN1JywgJ3dhcl9rb2RabWlhbm93b3NjaScsICd3YXJfd29qZXdvZHp0d28nLCAnd2FyX2tvZFdvamV3b2R6dHdhJywgJ3dhcl91bGljYScsICd3YXJfcG93aWF0JywgJ3dhcl9rb2RQb3dpYXR1JywgJ3dhcl96YXdvZCcsICd3YXJfZ21pbmEnLCAnd2FyX29waXNXeW5hZ3JvZHplbmlhJywgJ3dhcl9wcmFjYVdXb2xuZURuaScsICd3YXJfd3luYWdyb2R6ZW5pZUJydXR0bycsICd3YXJfbnJCdWR5bmt1JywgJ3dhcl9rb2RTeXN0ZW11V3luYWdyYWR6YW5pYScsICd3YXJfbnJMb2thbHUnLCAnd2FyX21pZWpzY2VQcmFjeScsICd3YXJfbEdvZHppbldUeWdvZG5pdScsICd3YXJfc3Rhbm93aXNrbycsICd3YXJfZGF0YVJvenBvY3plY2lhUHJhY3knLCAnd2FyX3d5bWlhckV0YXR1JywgJ3dhcl9taWVqc2Nvd29zYycsICd3YXJfemF0ck9kWmFyYXonLCAnd2FyX2tvZE1pZWpzY293b3NjaScsICd3YXJfcHJhY2FTdGFsYScsICd3YXJfd3luYWdyb2R6ZW5pZUJydXR0b1pUeXBlbVN0YXdraScsICd3YXJfem1pYW5vd29zYycsICd3YXJfcHJhY2FUeW1jemFzb3dhJywgJ3dhcl9rb2RSb2R6YWp1WmF0cnVkbmllbmlhJywgJ2tvZF9wb2N6dG93eScpDQpgYGANCg0KYGBge3J9DQpjcmVhdGVfdGFibGUgPC0gZnVuY3Rpb24oY2JvcF95ZWFyLCBmaWxlcykgew0KDQogIGZvciAoZmlsZSBpbiBmaWxlcykgew0KICAgIGNib3BfeWVhcltbbGVuZ3RoKGNib3BfeWVhcikrMV1dIDwtIHJlYWRfY2JvcChmaWxlKQ0KICB9DQogIA0KICBmaWxlcyA8LSBzdHJfcmVtb3ZlX2FsbChmaWxlcywgJyhkYXRhXFxcXFxcZCtcXFxcfF9mdWxsLmpzb24pJykNCiAgDQogIG5hbWVzKGNib3BfeWVhcikgPC0gYmFzZW5hbWUoZmlsZXMpDQogIGNib3BfeWVhciA8LSByYmluZGxpc3QoY2JvcF95ZWFyLCBpZGNvbCA9ICJmaWxlIikNCiAgY2JvcF95ZWFyJGZpbGUgPC0geW1kKGNib3BfeWVhciRmaWxlKQ0KICANCiAgY2JvcF95ZWFyIDwtIGNib3BfeWVhclssIC4uY29sdW1uc190b19rZWVwXQ0KICANCiAgZm9yIChpIGluIGNvbHVtbnNfdG9fa2VlcCkgew0KICAgIGlmIChpcy5jaGFyYWN0ZXIoY2JvcF95ZWFyW1tpXV0pID09IFRSVUUpIGNib3BfeWVhcltbaV1dIDwtDQogICAgc3RyaV90cmFuc19nZW5lcmFsKGNib3BfeWVhcltbaV1dLCAncGwtYXNjaWknKQ0KICB9DQoNCiAgcmV0dXJuKGNib3BfeWVhcikNCn0NCmBgYA0KDQpgYGB7cn0NCnJlbW92ZV9kdXBsaWNhdGVzIDwtIGZ1bmN0aW9uKGNib3BfeWVhcikgew0KICANCiAgI0lkZW50aWNhbCBqb2Igb2ZmZXJzDQogIGNib3BfeWVhciA8LSBjYm9wX3llYXIgJT4lIGZpbHRlcihkdXBsaWNhdGVkKGNib3BfeWVhciwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgYnk9bmFtZXMoY2JvcF95ZWFyKVtuYW1lcyhjYm9wX3llYXIpDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIT0nZmlsZSddLCANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGZyb21MYXN0ID0gVFJVRSkgPT0gRkFMU0UpDQogIA0KICAjUHJvbG9uZ2VkIGpvYiBvZmZlcnMNCiAgY2JvcF95ZWFyIDwtIGNib3BfeWVhciAlPiUgZmlsdGVyKGR1cGxpY2F0ZWQoY2JvcF95ZWFyLCANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGJ5PW5hbWVzKGNib3BfeWVhcilbIW5hbWVzKGNib3BfeWVhcikgJWluJSANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjKCdmaWxlJywncG96X29mZXJ0YVdhem5hRG8nKV0sIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZnJvbUxhc3QgPSBUUlVFKSA9PSBGQUxTRSkNCiAgDQogICNBY3R1YWxpc2VkIGpvYiBvZmZlcnMgLSBkaWZmZXJlbnQgc3RhcnQgZGF0ZQ0KICBjYm9wX3llYXIgPC0gY2JvcF95ZWFyICU+JSBmaWx0ZXIoZHVwbGljYXRlZChjYm9wX3llYXIsIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgYnk9bmFtZXMoY2JvcF95ZWFyKVshbmFtZXMoY2JvcF95ZWFyKSAlaW4lIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGMoJ2ZpbGUnLCd3YXJfZGF0YVJvenBvY3plY2lhUHJhY3knKV0sIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZnJvbUxhc3QgPSBUUlVFKSA9PSBGQUxTRSkNCiAgDQogICNBY3R1YWxpc2VkIGpvYiBvZmZlcnMgLSBkaWZmZXJlbnQgZW5kIGRhdGUNCiAgY2JvcF95ZWFyIDwtIGNib3BfeWVhciAlPiUgZmlsdGVyKGR1cGxpY2F0ZWQoY2JvcF95ZWFyLCANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGJ5PW5hbWVzKGNib3BfeWVhcilbIW5hbWVzKGNib3BfeWVhcikgJWluJSANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjKCdmaWxlJywnd2FyX2RhdGFaYWtvbmN6ZW5pYVByYWN5JyldLCANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGZyb21MYXN0ID0gVFJVRSkgPT0gRkFMU0UpDQoNCiAgI1Byb2xvbmdlZCBqb2Igb2ZmZXJzIGFuZCBhY3R1YWxpc2VkIGpvYiBvZmZlcnMNCiAgY2JvcF95ZWFyIDwtIGNib3BfeWVhciAlPiUgZmlsdGVyKGR1cGxpY2F0ZWQoY2JvcF95ZWFyLCANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGJ5PW5hbWVzKGNib3BfeWVhcilbIW5hbWVzKGNib3BfeWVhcikgJWluJSANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjKCdmaWxlJywncG96X29mZXJ0YVdhem5hRG8nLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgJ3dhcl9kYXRhUm96cG9jemVjaWFQcmFjeScpXSwgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBmcm9tTGFzdCA9IFRSVUUpID09IEZBTFNFKQ0KICANCiAgY2JvcF95ZWFyIDwtIGNib3BfeWVhciAlPiUgZmlsdGVyKGR1cGxpY2F0ZWQoY2JvcF95ZWFyLCANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGJ5PW5hbWVzKGNib3BfeWVhcilbIW5hbWVzKGNib3BfeWVhcikgJWluJSANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjKCdmaWxlJywncG96X29mZXJ0YVdhem5hRG8nLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgJ3dhcl9kYXRhWmFrb25jemVuaWFQcmFjeScpXSwgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBmcm9tTGFzdCA9IFRSVUUpID09IEZBTFNFKQ0KICANCiAgY2JvcF95ZWFyIDwtIGNib3BfeWVhciAlPiUgZmlsdGVyKGR1cGxpY2F0ZWQoY2JvcF95ZWFyLCANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGJ5PW5hbWVzKGNib3BfeWVhcilbIW5hbWVzKGNib3BfeWVhcikgJWluJSANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjKCdmaWxlJywncG96X29mZXJ0YVdhem5hRG8nLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgJ3dhcl9kYXRhUm96cG9jemVjaWFQcmFjeScsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAnd2FyX2RhdGFaYWtvbmN6ZW5pYVByYWN5JyldLCANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGZyb21MYXN0ID0gVFJVRSkgPT0gRkFMU0UpDQogIA0KICAjSm9iIG9mZmVycyB3aXRoIGRpZmZlcmVudCBwaG9uZSBuby4NCiAgY2JvcF9kdXBlcyA8LSBjYm9wX3llYXIgJT4lIGZpbHRlcihkdXBsaWNhdGVkKGNib3BfeWVhciwgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBieT1uYW1lcyhjYm9wX3llYXIpWyFuYW1lcyhjYm9wX3llYXIpICVpbiUgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgYygnZmlsZScsJ3ByYWNfb3NvYmFEb0tvbnRha3R1JywNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICdwcmFjX25yVGVsZWZvbnUnKV0sIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZnJvbUxhc3QgPSBGQUxTRSkgPT0gVFJVRSB8DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGR1cGxpY2F0ZWQoY2JvcF95ZWFyLCANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGJ5PW5hbWVzKGNib3BfeWVhcilbIW5hbWVzKGNib3BfeWVhcikgJWluJSANCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjKCdmaWxlJywncHJhY19vc29iYURvS29udGFrdHUnLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgJ3ByYWNfbnJUZWxlZm9udScpXSwgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBmcm9tTGFzdCA9IFRSVUUpID09IFRSVUUpICU+JSANCiAgICBzZWxlY3QoaGFzaCwgcG96X2xXb2xueWNoTWllanNjLCBwb3pfbFdvbG55Y2hNaWVqc2NEbGFOaWVwZWxuKSAlPiUgZ3JvdXBfYnkoaGFzaCkgJT4lDQogICAgc3VtbWFyaXNlKHBvel9sV29sbnljaE1pZWpzYyA9IHN1bShwb3pfbFdvbG55Y2hNaWVqc2MpLCANCiAgICAgICAgICAgICAgcG96X2xXb2xueWNoTWllanNjRGxhTmllcGVsbiA9IHN1bShwb3pfbFdvbG55Y2hNaWVqc2NEbGFOaWVwZWxuKSkNCiAgDQogIGNib3BfeWVhciA8LSBjYm9wX3llYXIgJT4lIGZpbHRlcihkdXBsaWNhdGVkKGNib3BfeWVhciwgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBieT1uYW1lcyhjYm9wX3llYXIpWyFuYW1lcyhjYm9wX3llYXIpICVpbiUgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgYygnZmlsZScsJ3ByYWNfb3NvYmFEb0tvbnRha3R1JywNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICdwcmFjX25yVGVsZWZvbnUnKV0sIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZnJvbUxhc3QgPSBGQUxTRSkgPT0gRkFMU0UpDQogIA0KICBmb3IoaSBpbiBjYm9wX2R1cGVzJGhhc2gpIHsNCiAgICBjYm9wX3llYXIkcG96X2xXb2xueWNoTWllanNjW2Nib3BfeWVhciRoYXNoID09IGldIDwtDQogICAgICBjYm9wX2R1cGVzJHBvel9sV29sbnljaE1pZWpzY1tjYm9wX2R1cGVzJGhhc2ggPT0gaV0NCiAgICBjYm9wX3llYXIkcG96X2xXb2xueWNoTWllanNjRGxhTmllcGVsbltjYm9wX3llYXIkaGFzaCA9PSBpXSA8LQ0KICAgICAgY2JvcF9kdXBlcyRwb3pfbFdvbG55Y2hNaWVqc2NEbGFOaWVwZWxuW2Nib3BfZHVwZXMkaGFzaCA9PSBpXQ0KICB9DQogIHJtKGNib3BfZHVwZXMpDQogIA0KICAjSm9iIG9mZmVycyB3aXRoIGRpZmZlcmVudCB2YWNhbmNpZXMNCiAgY2JvcF9kdXBlcyA8LSBjYm9wX3llYXIgJT4lIGZpbHRlcihkdXBsaWNhdGVkKGNib3BfeWVhciwgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBieT1uYW1lcyhjYm9wX3llYXIpWyFuYW1lcyhjYm9wX3llYXIpICVpbiUgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgYygnZmlsZScsJ3Bvel9sV29sbnljaE1pZWpzYycsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAncG96X2xXb2xueWNoTWllanNjRGxhTmllcGVsbicpXSwgDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBmcm9tTGFzdCA9IEZBTFNFKSA9PSBUUlVFIHwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZHVwbGljYXRlZChjYm9wX3llYXIsIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgYnk9bmFtZXMoY2JvcF95ZWFyKVshbmFtZXMoY2JvcF95ZWFyKSAlaW4lIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGMoJ2ZpbGUnLCdwb3pfbFdvbG55Y2hNaWVqc2MnLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgJ3Bvel9sV29sbnljaE1pZWpzY0RsYU5pZXBlbG4nKV0sIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZnJvbUxhc3QgPSBUUlVFKSA9PSBUUlVFKSAlPiUgDQogICAgc2VsZWN0KGhhc2gsIHBvel9sV29sbnljaE1pZWpzYywgcG96X2xXb2xueWNoTWllanNjRGxhTmllcGVsbikgJT4lIGdyb3VwX2J5KGhhc2gpICU+JQ0KICAgIHN1bW1hcmlzZShwb3pfbFdvbG55Y2hNaWVqc2MgPSBzdW0ocG96X2xXb2xueWNoTWllanNjKSwgDQogICAgICAgICAgICAgIHBvel9sV29sbnljaE1pZWpzY0RsYU5pZXBlbG4gPSBzdW0ocG96X2xXb2xueWNoTWllanNjRGxhTmllcGVsbikpDQogIA0KICBjYm9wX3llYXIgPC0gY2JvcF95ZWFyICU+JSBmaWx0ZXIoZHVwbGljYXRlZChjYm9wX3llYXIsIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgYnk9bmFtZXMoY2JvcF95ZWFyKVshbmFtZXMoY2JvcF95ZWFyKSAlaW4lIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIGMoJ2ZpbGUnLCdwb3pfbFdvbG55Y2hNaWVqc2MnLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgJ3Bvel9sV29sbnljaE1pZWpzY0RsYU5pZXBlbG4nKV0sIA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZnJvbUxhc3QgPSBGQUxTRSkgPT0gRkFMU0UpDQogIA0KICBmb3IoaSBpbiBjYm9wX2R1cGVzJGhhc2gpIHsNCiAgICBjYm9wX3llYXIkcG96X2xXb2xueWNoTWllanNjW2Nib3BfeWVhciRoYXNoID09IGldIDwtDQogICAgICBjYm9wX2R1cGVzJHBvel9sV29sbnljaE1pZWpzY1tjYm9wX2R1cGVzJGhhc2ggPT0gaV0NCiAgICBjYm9wX3llYXIkcG96X2xXb2xueWNoTWllanNjRGxhTmllcGVsbltjYm9wX3llYXIkaGFzaCA9PSBpXSA8LQ0KICAgICAgY2JvcF9kdXBlcyRwb3pfbFdvbG55Y2hNaWVqc2NEbGFOaWVwZWxuW2Nib3BfZHVwZXMkaGFzaCA9PSBpXQ0KICB9DQogIHJtKGNib3BfZHVwZXMpDQogIA0KICAjVE9ETw0KICANCiAgcmV0dXJuKGNib3BfeWVhcikNCn0NCmBgYA0KDQpgYGB7cn0NCiMyMDIwDQojTnVtYmVyIG9mIHVuaXF1ZSBoYXNoL2pvYiBvZmZlcnMNCm5fMjAyMCA8LSBsZW5ndGgodW5pcXVlKGNib3BfMjAyMCRoYXNoKSkNCmRpZmZfbl8yMDIwIDwtIGxlbmd0aChjYm9wXzIwMjAkaGFzaCkgLSBuXzIwMjANCg0KI1RhYmxlIHdpdGggZHVwbGljYXRlcyBhbmQgd2l0aCB1bmlxdWUgdmFsdWUNCmNib3BfZHVwbGljYXRlXzIwMjAgPC0gY2JvcF8yMDIwICU+JSBnZXRfZHVwZXMoaGFzaCkNCg0KY2JvcF91bmlxdWVfMjAyMCA8LSBzZXRkaWZmKGNib3BfMjAyMCwgY2JvcF9kdXBsaWNhdGVfMjAyMFssLTIsd2l0aD1GQUxTRV0pDQoNCiNBbmFseXNpcyAtIGR1cGxpY2F0ZXMNCnRhYl8wMzE0MWQgPC0gY2JvcF9kdXBsaWNhdGVfMjAyMCAlPiUgZmlsdGVyKGhhc2ggPT0gJzAzMTQxZDUzY2Y0MTkxMmEzZDA0NWZkNTZiZTQyNzg4JykNCg0KIzIwMjINCm5fMjAyMiA8LSBsZW5ndGgodW5pcXVlKGNib3BfMjAyMiRoYXNoKSkNCmRpZmZfbl8yMDIyIDwtIGxlbmd0aChjYm9wXzIwMjIkaGFzaCkgLSBuXzIwMjINCg0KI1RhYmxlIHdpdGggZHVwbGljYXRlcyBhbmQgd2l0aCB1bmlxdWUgdmFsdWUNCmNib3BfZHVwbGljYXRlXzIwMjIgPC0gY2JvcF8yMDIyICU+JSBnZXRfZHVwZXMoaGFzaCkNCg0KYGBgDQoNCmBgYHtyfQ0KI05vdGF0a2kNCiNSw7PFvG5pY2UgdyB3YXJfd3luYWdyb2R6ZW5pZUJydXR0byEhIQ0KI3dhcl9zdGFub3dpc2tvOiAic3BlY2phbGlzdGEgZHMuIGhhbmRsb3d5Y2gtMTMzIglpICIxMzMtc3BlY2phbGlzdGEgZHMuIGhhbmRsb3d5Y2giDQojQ2hlxYJtIHcgcsOzxbxueWNoIHdvaiwgcG93aWF0YWNoLCBnbWluYWNoICc2MDA5ZmU0NzZiMDczOWVmNmQzZjhkOWNiNzNlNzg0ZDMnDQojdWxpY2EgaSBicmFrIHVsaWN5Li4uLg0KI3dhcl9vcGlzV3luYWdyb2R6ZW5pYSAnKyBzdGF6IHByYWN5ICArIDEwMCUgcHJlbWlpIHJlZ3VsYW1pbm93ZWonIGx1YiAnKyBzdGF6IHByYWN5ICArIDEwJSBwcmVtaWkgcmVndWxhbWlub3dlaicNCiMnMDFjMjEyODc0ZDdjMmVjOTU4MjEwOTQxZGVhOTYyYTUnIC0genVwZcWCbmllIGlubnkga29kIHphd29kdQ0KIycwNWY2YzMwYTMxYWE3ZGZiM2Q3NzhjODgyZDM2Njk0NicgLSBraWxrYSB6YXdvZMOzdw0KI0VVUkVTIFRSVUUNCiNwb3pfa29kS2F0ZWdvcmlpT2ZlcnR5DQoNCmBgYA0KDQpgYGB7cn0NCiMyMDIwDQpjYm9wXzIwMjAgPC0gbGlzdCgpDQpmaWxlcyA8LSBTeXMuZ2xvYignZGF0YVxcMjAyMFxcKi5qc29uJykNCmNib3BfMjAyMDwtIGNyZWF0ZV90YWJsZShjYm9wXzIwMjAsIGZpbGVzKQ0KY2JvcF8yMDIwIDwtIHJlbW92ZV9kdXBsaWNhdGVzKGNib3BfMjAyMCkNCmBgYA0KDQpgYGB7cn0NCiMyMDIyDQpjYm9wXzIwMjIgPC0gbGlzdCgpDQpmaWxlcyA8LSBTeXMuZ2xvYignZGF0YVxcMjAyMlxcKi5qc29uJykNCmNib3BfMjAyMiA8LSBjcmVhdGVfdGFibGUoY2JvcF8yMDIyLCBmaWxlcykNCmNib3BfMjAyMiA8LSByZW1vdmVfZHVwbGljYXRlcyhjYm9wXzIwMjIpDQpgYGANCg0KYGBge3J9DQojMjAyMQ0KZmlsZXMgPC0gU3lzLmdsb2IoJ2RhdGFcXDIwMjFcXCouanNvbicpIA0KDQpjYm9wXzIwMjFfMSA8LSBsaXN0KCkNCmZpbGVzXzEgPC0gZmlsZXNbMTpmbG9vcihsZW5ndGgoZmlsZXMpLzIpXQ0KY2JvcF8yMDIxXzEgPC0gY3JlYXRlX3RhYmxlKGNib3BfMjAyMV8xLCBmaWxlc18xKQ0KY2JvcF8yMDIxXzEgPC0gcmVtb3ZlX2R1cGxpY2F0ZXMoY2JvcF8yMDIxXzEpDQoNCmNib3BfMjAyMV8yIDwtIGxpc3QoKQ0KZmlsZXNfMiA8LSBmaWxlc1soMStmbG9vcihsZW5ndGgoZmlsZXMpLzIpKTpsZW5ndGgoZmlsZXMpXQ0KY2JvcF8yMDIxXzIgPC0gY3JlYXRlX3RhYmxlKGNib3BfMjAyMV8yLCBmaWxlc18yKQ0KY2JvcF8yMDIxXzIgPC0gcmVtb3ZlX2R1cGxpY2F0ZXMoY2JvcF8yMDIxXzIpDQoNCmNib3BfMjAyMSA8LSByYmluZGxpc3QobGlzdChjYm9wXzIwMjFfMSwgY2JvcF8yMDIxXzIpKQ0Kcm0oY2JvcF8yMDIxXzEpDQpybShjYm9wXzIwMjFfMikNCg0KY2JvcF8yMDIxIDwtIHJlbW92ZV9kdXBsaWNhdGVzKGNib3BfMjAyMSkNCmBgYA0KDQpgYGB7cn0NCiNVc2VmdWwgY29sdW1ucw0KI2NvbHVtbnMgPC0gYygnZmlsZScsICdoYXNoJywgJ3Bvel9pZGVudHlmaWthdG9yT2ZlcnR5JywgJ3Bvel9rb2RaYXdvZHUnLCAgICAgICAgICAgICAgJ3Bvel9ncnVwYVphd29kdScsICdwb3pfbFdvbG55Y2hNaWVqc2MnLCAncG96X2RhdGFVZG9zdGVwbmllbmlhT2ZlcnR5JywgICAgICAgICAgICAgJ3Bvel9kYXRhUHJ6eWpaZ2xvc3onLCAncG96X29mZXJ0YVdhem5hRG8nLCAncG96X29mZXJ0YVpnbG9zem9uYVByemV6JywgICAgICAgICAgICAgICdwb3pfb2ZlcnRhWmdsb3N6b25hUHJ6ZXpLb2RKZWRub3N0a2knLCAnd2FyX2tyYWonLCAnd2FyX3dvamV3b2R6dHdvJywgICAgICAgICAgICAgJ3dhcl9rb2RXb2pld29kenR3YScsICd3YXJfcG93aWF0JywgJ3dhcl9rb2RQb3dpYXR1JywgJ3dhcl9nbWluYScsICAgICAgICAgICAgICd3YXJfbWllanNjb3dvc2MnLCAnd2FyX2tvZE1pZWpzY293b3NjaScsICd3YXJfdWxpY2EnLCAnd2FyX21pZWpzY2VQcmFjeScsICAgICAgICAgICAgICd3YXJfemF3b2QnLCAnd2FyX3N0YW5vd2lza28nLCAnd2FyX3d5bWlhckV0YXR1JywgJ3dhcl9yb2R6YWpaYXRydWRuaWVuaWEnLCAgICAgICAgICAgICAnd2FyX2tvZFJvZHphanVaYXRydWRuaWVuaWEnLCAnd2FyX3BlbnNqYU5ldHRvJywgJ3ByYWNfbmF6d2FVcnplZHVQcmFjeScsICAgICAgICAgICAgICdwcmFjX25pcCcsICdwcmFjX3JlZ29uJywgJ3N0YXR1c09mZXJ0eScsICdrb2RfcG9jenRvd3knKQ0KYGBgDQoNCmBgYHtyfQ0KIzIwMjAtMjAyMiBBbGwNCmNib3BfYWxsIDwtIHJiaW5kbGlzdChsaXN0KGNib3BfMjAyMCwgY2JvcF8yMDIxLCBjYm9wXzIwMjIpKQ0KY2JvcF9hbGwgPC0gcmVtb3ZlX2R1cGxpY2F0ZXMoY2JvcF9hbGwpDQpgYGANCg0KYGBge3J9DQojQ3JlYXRlIFJEUyBmaWxlcw0Kc2F2ZVJEUyhjYm9wXzIwMjAsIGZpbGUgPSAiY2JvcF8yMDIwLnJkcyIpDQpzYXZlUkRTKGNib3BfMjAyMSwgZmlsZSA9ICJjYm9wXzIwMjEucmRzIikNCnNhdmVSRFMoY2JvcF8yMDIyLCBmaWxlID0gImNib3BfMjAyMi5yZHMiKQ0Kc2F2ZVJEUyhjYm9wX2FsbCwgZmlsZSA9ICJjYm9wX2FsbC5yZHMiKQ0KYGBg